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

Solved Adding Protect all to item

Denny

New Member
Joined
Feb 28, 2009
Messages
11
Reaction score
0
I looking for a script that would allow me to add protect all to my gear for ot tibia 9.6
 
Last edited:
XML:
<attribute key="absorbPercentPhysical" value="10" />
this will add 10% protection to physical attacks :P I guess you can figure the rest :P

Other things you can add
XML:
<attribute key="absorbPercentDeath" value="10" />

write this under you desired item xD

example:
XML:
    <item id="2494" article="a" name="demon armor">
        <attribute key="weight" value="8000" />
        <attribute key="armor" value="750" />
        <attribute key="absorbPercentDeath" value="10" />
        <attribute key="absorbPercentPhysical" value="10" />
        <attribute key="slotType" value="body" />

Guess thats what you mean :P

Rep ++ If I helped and don't forget to put [Solved] on the thread :P

Edit or this:
XML:
<attribute key="absorbPercentAll" value="10" />
For 10% protection to all.
 
Last edited:
Back
Top