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

TFS 7.6 - ammunition

revion

New Member
Joined
Oct 27, 2009
Messages
46
Reaction score
0
I have removeWeaponAmmunition = true in config, but it still doesn't remove ammunition while shooting.
What's wrong with it? ;p
 
Tried this but it didn't help :/
(tried YES, "YES", 1, "1")
@up hmm I didn't edit ammunition there :P
@edit I have even changed my items.xml to those from fresh tfs and it's still not removing
 
Last edited:
I've fixed it on tfs 7.6 for example:

Code:
	<item id="2544" article="an" name="arrow" plural="arrows">
		<attribute key="weight" value="70"/>
		<attribute key="attack" value="26"/>
                <attribute key="hitChance" value="90"/>
		<attribute key="weaponType" value="ammunition"/>
		<attribute key="ammoType" value="arrow"/>
		<attribute key="breakChance" value="80"/>
		<attribute key="ammoAction" value="removecount"/>
		<attribute key="shootType" value="arrow"/>

Code:
	removeWeaponAmmunition = true
	removeWeaponCharges = true
	removeRuneCharges = true
 
Back
Top