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

Lua supps problem with counting

dunnish

New Member
Joined
Jun 18, 2009
Messages
268
Solutions
1
Reaction score
2
hello when i have 100+ manas/runes they count wrong when its like why its say useing one of like 99 when i have 199 can some one help me


sorry for my bad eng :/
 
If your using 0.4 Dev, then goto your items\items.xml and find your runes at there, and remove the charges at there.
for example:
Code:
	<item id="2261" article="a" name="destroy field rune">
		<attribute key="runeSpellName" value="adito grav"/>
		<attribute key="weight" value="120"/>
		<attribute key="charges" value="3"/>
		<attribute key="showcharges" value="1"/>
	</item>

to this
Code:
	<item id="2261" article="a" name="destroy field rune">
		<attribute key="runeSpellName" value="adito grav"/>
		<attribute key="weight" value="120"/>
	</item>
 
Back
Top