• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

How i make monster summon fast

Example:
Code:
<summons maxSummons="1">
        <summon name="Death Blob" interval="4000" chance="15"/>
    </summons>

lower the interval number to make the monster summon more quickly
change the chance to 100 to make sure a monster is summoned on every interval
 
Code:
<summons maxSummons="COUNT HERE('x')">
        <summon name="NAME HERE('y')" interval="1000" chance="100" max="MAX SUMMONS OF THE SAME TYPE HERE('z')"/>
    </summons>
So basically this code means that it will spawn 'x' monster/s of 'y' name with interval 1000(1 second) and 100% chance to success, and 'z' creatures of the same type/name.
Interval 1000 - is the lowest possible, even if u make it 1 it will still cast the spell after one second.
 
if u want it very fast change the chance.... to chance "10"

just 1 information bro
he need to change interval not chance :/
interval is based for time .. so 4000 = 4 secs
but chance is based for a chance to summon this monster

but i think chance is useless if u will use it for one summon only
u will need this chance for more kinds of monsters

like a boss called Devil
and this boss can summon Orshabaals , Demons , Fire Elementals
then we will need chance then
to make it a little bit fair xD
 
Back
Top