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

Charges

Lbtg

Advanced OT User
Joined
Nov 22, 2008
Messages
2,398
Reaction score
165
hey whats the problem could by if charges wont dissapear ? on weapons , amulets , rings evrything that has charges....

how i could fix that it dissapear ?
 
config.lua

LUA:
removeWeaponAmmunition = false or true
removeWeaponCharges = false or true
removeRuneCharges = false or true

In the case of the weapons, amulets, rings and everything that has charges, you just need to look at this attribute key in items.xml and change it, eg.

XML:
<attribute key="charges" value="250"/>

That will give you 250 charges obviously, just put 0 instead of 250 and you will have infinite charges.
 
Last edited:
Items.xml , remove charges..
example.. items.xml
LUA:
	<attribute key="charges" value="200" />
<attribute key="showcharges" value="1" />
Remove.. lines
 
lets say ssa thats me ss;
PHP:
    <item id="2197" article="a" name="stone skin amulet">
        <attribute key="weight" value="760" />
        <attribute key="slotType" value="necklace" />
        <attribute key="charges" value="5" />
        <attribute key="absorbPercentPhysical" value="80" />
        <attribute key="absorbPercentDeath" value="80" />
        <attribute key="showattributes" value="1" />

when i put it on amulet slot it disapear in same sec
 
for don't dissaper delete lines charges..
LUA:
    <item id="2197" article="a" name="stone skin amulet">
        <attribute key="weight" value="760" />
        <attribute key="slotType" value="necklace" />
        <attribute key="absorbPercentPhysical" value="80" />
        <attribute key="absorbPercentDeath" value="80" />
 
Back
Top