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

Arrows BreakChance

ZeeBeast

Preferable Beta Tester
Joined
Dec 5, 2013
Messages
206
Reaction score
10
Location
United States
I want to know if there is any possible way I can add a BreakChance to arrows so they do not break after every shot. I have tried this but it did not work:
Code:
    <item id="2544" article="an" name="arrow" plural="arrows">
        <attribute key="weight" value="70"/>
        <attribute key="slotType" value="ammo"/>
        <attribute key="attack" value="25"/>
        <attribute key="hitChance" value="90"/>
        <attribute key="weaponType" value="ammunition"/>
        <attribute key="ammoType" value="arrow"/>
        <attribute key="shootType" value="arrow"/>
        <attribute key="breakChance" value="7"/>
        <attribute key="ammoAction" value="removecount"/>
    </item>
I will be thankful for any help :)
 
It's because you're using removecount instead of moveback.

<attribute key="ammoAction" value="moveback" />
 
Back
Top