• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Spear break and move

zdolnykamil

New Member
Joined
Jun 2, 2010
Messages
5
Reaction score
0
Hi
how t odo it to got break Chance and move on same time?
i mean when i shoot by spear i want to pick tchem from ground and got Chance to break sometimes.
When i use moveback then break Chance working if i put "move" breakchance didnt works. its any possible to make two on same time?

<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="20" />
<attribute key="ammoAction" value="move" />
 
Hi
how t odo it to got break Chance and move on same time?
i mean when i shoot by spear i want to pick tchem from ground and got Chance to break sometimes.
When i use moveback then break Chance working if i put "move" breakchance didnt works. its any possible to make two on same time?

<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="20" />
<attribute key="ammoAction" value="move" />
Try to change in weapons.xml not in items.xml
Should be something like this:
XML:
    <distance id="2389" breakchance="20" action="move" /> <!-- spear -->
 
Back
Top