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

Break chance

AGATG

NonStopWar Staff
Joined
Oct 29, 2009
Messages
32
Reaction score
0
Location
Wisconsin
k, i got another problem. break chance =0! if somebody shows me script for how to do unlimited ammo ( no break ) i rep++ :thumbup:
 
Config.lua:
removeWeaponAmmunition = false

and in items.xml on spears/stars etc.
<attribute key="breakChance" value="0" />
 
to set unlimated ammo change
Code:
removeWeaponAmmunition = true
to
Code:
removeWeaponAmmunition = false
to make spears unlimated yes you set there break chance to 0
Code:
	<item id="7367" article="an" name="enchanted spear" plural="enchanted spears">
		<attribute key="weight" value="2000"/>
		<attribute key="attack" value="38"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="enchantedspear"/>
		<attribute key="range" value="5"/>
		<attribute key="breakChance" value="0"/>
		<attribute key="ammoAction" value="moveback"/>
sypher beat me again ;)
 
Back
Top