• 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 attacks not doing damage.

MadMOOK

Hoo
Joined
Apr 20, 2011
Messages
802
Reaction score
44
What did I do wrong there?
Code:
<attack name="physical" interval="1000" chance="50" range="7" target="1" attack="833"/>
        <attribute key="shootEffect" value="etherealspear"/>
        <attribute key="areaEffect" value="holyarea"/>
      
        <attack name="physical" interval="900" chance="50" attack="633"/>
        <attribute key="shootEffect" value="holy"/>
        <attribute key="areaEffect" value="fireattack"/>
        </attack>

I forgot min and max and I closed the ends of attacks... heres corrections....
Code:
<attack name="physical" interval="1000" chance="50" range="7" target="1" min="-233" max="-833">
        <attribute key="shootEffect" value="etherealspear"/>
        <attribute key="areaEffect" value="holyarea"/>
        </attack>
    <attack name="physical" interval="900" chance="50" min="-333" max="-633">
        <attribute key="shootEffect" value="holy"/>
        <attribute key="areaEffect" value="fireattack"/>
        </attack>
 
Last edited:
Back
Top