• 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 maker ?

Grizarly

New Member
Joined
Nov 12, 2017
Messages
59
Reaction score
0
is there any softwar that allows me editing monsters attack, like how that attack will be ?
 
You can edit monsters attack values in theirs xml file. For example dragon file in tfs forgottenserver/dragon.xml at master · otland/forgottenserver · GitHub

the attacks part
Code:
<attacks>
   <attack name="melee" interval="2000" min="0" max="-120" />

   <attack name="fire" interval="2000" chance="15" range="7" radius="4" target="1" min="-60" max="-140">
   <attribute key="shootEffect" value="fire" />
   <attribute key="areaEffect" value="firearea" />
   </attack>

   <attack name="fire" interval="2000" chance="10" length="8" spread="3" min="-100" max="-170">
   <attribute key="areaEffect" value="firearea" />
   </attack>
</attacks>

You got there melee attack, fireball and fire wave

You can modify its damage, shape and ranges
 
Back
Top