• 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 Weaknesses bug in Trunk

buzzbuzz2

Altec OTS Owner
Joined
Jun 7, 2007
Messages
97
Reaction score
1
Location
WI (USA)
when using trunk the monster weaknesses dont appear to work... this is an example of a dragon monster file tag but it can still take dmg to fire.

<weaknesses>
<weakness name="physical" percent="0"/>
<weakness name="energy" percent="0"/>
<weakness name="fire" percent="100"/>
<weakness name="earth" percent="100"/>
<weakness name="ice" percent="-10"/>
<weakness name="holy" percent="0"/>
<weakness name="death" percent="0"/>
</weaknesses>

Is my wording wrong? How do I fix this.

Let me know.

Thanks!
 
Yea... maybe give me an example since the script im using at the top doesn't seem to work with negative nor positive values... however i receive no errors.... odd
 
Try:

Code:
  <elements>
    <element physicalPercent="0"/>
    <element icePercent="-1000"/>
    <element earthPercent="100"/>
    <element firePercent="0"/>
    <element energyPercent="-10"/>
    <element holyPercent="0"/>
    <element deathPercent="0"/>
  </elements>

See ya!
 

Similar threads

Replies
4
Views
322
V
  • Question Question
Replies
1
Views
162
Back
Top