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

Question - Spears dont disappear.

Macaws

New Member
Joined
Sep 11, 2007
Messages
25
Reaction score
0
How I can do in order that the spear don't disappear, only the spearsm the bolts and the rest yes.

ty :*
 
Goto items.xml find

Code:
	<item id="2389" article="a" name="spear" plural="spears">
		<attribute key="weight" value="2000"/>
		<attribute key="attack" value="25"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="spear"/>
		<attribute key="range" value="5"/>
		<attribute key="breakChance" value="10"/>
	</item>

to
Code:
	<item id="2389" article="a" name="spear" plural="spears">
		<attribute key="weight" value="2000"/>
		<attribute key="attack" value="25"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="spear"/>
		<attribute key="range" value="5"/>
	</item>
 
I try that and the spears disappear what value i must put for do that it dont disappear?
 
Last edited:
I do that you sayed and the spears disappear each atack you had tested it?
 
OK i change the code then i tested and the spears disappear. :S
 
hmm use this then

Code:
	<item id="2389" article="a" name="spear" plural="spears">
		<attribute key="weight" value="2000"/>
		<attribute key="attack" value="25"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="spear"/>
		<attribute key="range" value="5"/>
		<attribute key="breakChance" value="999999"/>
	</item>
 
It dont work the minumus that you can put is

Code:
	<item id="2389" article="a" name="spear" plural="spears">
		<attribute key="weight" value="2000"/>
		<attribute key="attack" value="25"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="spear"/>
		<attribute key="range" value="5"/>
		<attribute key="breakChance" value="1"/>
	</item>
 
It dont work the minumus that you can put is

Code:
	<item id="2389" article="a" name="spear" plural="spears">
		<attribute key="weight" value="2000"/>
		<attribute key="attack" value="25"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="spear"/>
		<attribute key="range" value="5"/>
		<attribute key="breakChance" value="1"/>
	</item>


well then i actually dont know how to fix it then :huh:
 
Back
Top