• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua Monster that spawns customly?

8674011

New Member
Joined
Jun 21, 2010
Messages
160
Reaction score
3
Location
The House
Say if I had a Cyclops Boss that I wanted to spawn at like 1% of the time at any cyclops spawn, how would I go about this?
 
This should help:
Code:
<?xml version="1.0" encoding="utf-8"?>
<raid>
    <areaspawn delay="1000" fromx="1" fromy="1" fromz="1" tox="1" toy="1" toz="1">
        <monster name="cyclops boss" amount="1" />
    </areaspawn>
</raid>
Code:
<?xml version="1.0" encoding="UTF-8"?>
<raids>
    <raid name="Cyclops" file="RaidName.xml" chance ="10" interval2="250" margin="60" enabled="yes"/>
</raids>
 
Back
Top