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

Solved Monster summons monster

tuduras

Well-Known Member
Joined
Jun 4, 2017
Messages
340
Solutions
2
Reaction score
58
Hello Otlanders, where to adjust monster summon?? In dragon.xml in data/monster? Thanks and Best Regards
 
If you have it in XML:

XML:
<summons maxSummons="4">
    <summon name="Rat" interval="1000" chance="100" max="2" />
    <summon name="Rotworm" interval="1000" chance="100" max="4" />
</summons>

if you have it in LUA:

LUA:
monster.maxSummons = 2
monster.summons = {
    {name = "rat", interval = 1000, chance = 100},
    {name = "rotworm", interval = 1000, chance = 100}
}
 
Thanks Snavy it works.
I used
LUA:
<summons maxSummons="4">
    <summon name="Rat" interval="1000" chance="100" max="2" />
    <summon name="Rotworm" interval="1000" chance="100" max="4" />
</summons>
 
Back
Top