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

Magic Plate Armor Absorb 50% DMG

white91

New Member
Joined
Jun 4, 2008
Messages
136
Reaction score
0
I need Script to MPA absorb 15% all DMG but i make it and it don't works

<item id="2472" article="a" name="magic plate armor">
<attribute key="description" value="An enchanted gem glows on the plate armor."/>
<attribute key="weight" value="8500"/>
<attribute key="armor" value="17"/>
<attribute key="slotType" value="body"/>
<attribute key="absorbPercentAll" value="50"/>

Edit:

Using TFS 0.3 rev. 815
 
Last edited:
I take
<attribute key="absorbPercentAll" value="50"/>
from might ring and if i take on ring dmg is 25% less (SD)
<item id="2164" article="a" name="might ring">
<attribute key="weight" value="100"/>
<attribute key="slotType" value="ring"/>
<attribute key="charges" value="20"/>
<attribute key="showcharges" value="1"/>
<attribute key="absorbPercentAll" value="25"/>
but if take MPA dmg is not 50% less (SD)
 
i changed it
<item id="2472" article="a" name="magic plate armor">
<attribute key="absorbPercentAll" value="15"/>
<attribute key="description" value="An enchanted gem glows on the plate
armor."/>
<attribute key="weight" value="8500"/>
<attribute key="armor" value="17"/>
<attribute key="slotType" value="body"/>
But still don't work
Please tell me what i do wrong.
or give me complete script.
 
Last edited:
OK i do it i need add to movements
<movevent event="Equip" itemid="2472" slot="armor" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2472" slot="armor" function="onDeEquipItem"/>
 
Last edited:
Back
Top