• 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 Weapon +Distance Fighting

Zinux

New Member
Joined
Nov 4, 2012
Messages
27
Reaction score
0
Hi!

I want to change my Spear so it gives you +20 in distance fighting but i don't know how to, please help!
 
Replace spear from items.xml

Lua:
<item id="2389" article="a" name="spear" plural="spears">
		<attribute key="weight" value="2000" />
		<attribute key="attack" value="25" />
                <attribute key="skillDist" value="20" />
		<attribute key="weaponType" value="distance" />
		<attribute key="shootType" value="spear" />
		<attribute key="range" value="3" />
		<attribute key="breakChance" value="3" />
		<attribute key="ammoAction" value="moveback" />
 
Back
Top