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

[Request] Improved charges.

kofel

Quietly
Joined
Aug 19, 2007
Messages
74
Reaction score
1
I have problem, i use TFS 0.2.10 and when replace orginal mace with this
Code:
<item id="2398" article="a" name="mace">
	<attribute key="weight" value="2800"/>
	<attribute key="defense" value="11"/>
	<attribute key="attack" value="16"/>
	<attribute key="charges" value="5"/>
	<attribute key="decayTo" value="2401"/>
	<attribute key="weaponType" value="club"/>
</item>
then mace have only 1 charges, how to make with 5 charges?^_^
Sorry for my English.
 
Code:
<item id="2398" article="a" name="mace">
	<attribute key="weight" value="2800"/>
	<attribute key="defense" value="11"/>
	<attribute key="attack" value="16"/>
     [b]<attribute key="showcharges" value="1"/>[/b]
	<attribute key="charges" value="5"/>
	<attribute key="weaponType" value="club"/>
</item>

But decayTo will not work ^.^ unless u change ur sources :)
 
If you are using command like /n mace 1 or /i 2398 1 to check that it will always 1 charge. You have to use command like that /n mace 5 or /i 2398 5
 
Back
Top