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

Amulet and ring issue

Death-Pulse

Owner of Death-Pulse
Joined
May 10, 2014
Messages
100
Reaction score
0
I am having problems with "Might ring" "Stone skin amulet" They do not disappear...Which means u are 100% protected from physical attacks lol not cool. Im useing tfs 0.3.6 /////8.6

Might ring Items and movements
Code:
    <item id="2164" article="a" name="might ring">
        <attribute key="weight" value="100" />
        <attribute key="slotType" value="ring" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentAll" value="20" />
    </item>
  
    <movevent type="Equip" itemid="2164" slot="ring" event="function" value="onEquipItem"/>
    <movevent type="DeEquip" itemid="2164" slot="ring" event="function" value="onDeEquipItem"/>

Heres the stone skine amulet Items and movements
Code:
<item id="2197" article="a" name="stone skin amulet">
        <attribute key="weight" value="760" />
        <attribute key="slotType" value="necklace" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentPhysical" value="80" />
        <attribute key="absorbPercentDeath" value="80" />
        <attribute key="showattributes" value="1" />
    </item>
  
  
  
  
  
  
        <movevent type="Equip" itemid="2197" slot="necklace" event="function" value="onEquipItem"/>
    <movevent type="DeEquip" itemid="2197" slot="necklace" event="function" value="onDeEquipItem"/>

Should i add <attribute key="charges" value="?" /> to them????

Ok i fixed it but now its showing 100 charges wtf lol to each item HEELLPPPP
 
Last edited by a moderator:
Back
Top