• 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!

Solved How many creatures a monster can summon?

bury

Active Member
Joined
Jul 27, 2008
Messages
421
Solutions
7
Reaction score
25
Code:
<summons maxSummons="3">
    <summon name="Magebomb" interval="10" chance="100"/>
    <summon name="Magebomb" interval="15" chance="100"/>
    <summon name="Magebomb" interval="20" chance="100"/>
  </summons>

I'm trying this, but the creature only makes 1 summon (i've waited for a second summon more than 10 minutes...).

Thanks!
 
Solution
1000=1 second, do not go under this.

Check this, and tell if work or not.
Code:
<summons maxSummons="3">
    <summon name="Magebomb" interval="1100" chance="100"/>
    <summon name="Magebomb" interval="1200" chance="95"/>
    <summon name="Magebomb" interval="1300" chance="90"/>
  </summons>
1000=1 second, do not go under this.

Check this, and tell if work or not.
Code:
<summons maxSummons="3">
    <summon name="Magebomb" interval="1100" chance="100"/>
    <summon name="Magebomb" interval="1200" chance="95"/>
    <summon name="Magebomb" interval="1300" chance="90"/>
  </summons>
 
Solution
Code:
<summons maxSummons="3">
        <summon name="Magebomb" interval="2000" chance="25" />
    </summons>

Adjust the interval and chance how you see fit.
Also, as Ascuas said, try not using such low values
 
This is what you want:
Lua:
<summons maxSummons="3">
    <summon name="Magebomb" interval="5000" chance="100" max="3"/>
      </summons>
 
FIXED, THANKS YOU ALL!!!

I set the first one as best answer since it was the first.

Merry Christmas!
 
Back
Top