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

Monster summon

Xapuur

New Member
Joined
Sep 15, 2009
Messages
157
Reaction score
0
Location
Chile
Hello. I did a monster who summons warlock and stone golem, the problem is that the limit of each summons is not respected. The maximum summons is 8, but sometimes the monster summon 7 warlock and 1 stone golem or 6 warlock and 2 stone golem etc. and the limits is 3 warlocks :S, How i fix this?

Code:
	<summons maxSummons="8">
		<summon name="stone golem" interval="1000" chance="30" max="5"/>
		<summon name="warlock" interval="1000" chance="15" max="3"/>

Regards
 
try this
XML:
<summons maxSummons="5">
	<summon name="stone golem" interval="2000" chance="10" max="5"/>
</summons>
<summons maxSummons="3">
	<summon name="warlock" interval="2000" chance="10" max="3"/>
</summons>
 
Back
Top