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

mana ring

Maxypad

New Member
Joined
Mar 13, 2012
Messages
35
Reaction score
0
i have tryed to create a mana ring in my ot (a ring that when u wear it,it give u a sort of "utamo vita" (as energy ring but without time on it..)
so when i wear it..it give me unlimited utamo vita but the problem is when i put it off,i still have utamo untill i logout..


info on it :
<movevent type="Equip" itemid="7697" slot="ring" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="7697" slot="ring" event="function" value="onEquipItem"/>


</item>
<item id="7697" article="a" name="mana ring">
<attribute key="weight" value="80" />
<attribute key="slotType" value="ring" />
<attribute key="manashield" value="1"/>
</item>
 
<movevent type="Equip" itemid="7697" slot="ring" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="7697" slot="ring" event="function" value="onEquipItem"/> <--- "value="offequipitem"/>
I bet it is that :p
 
Lua:
<movevent type="DeEquip" itemid="7697" slot="ring" event="function" value="onDeEquipItem"/>

just forgot to change to deequip
 
Back
Top