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

Is it possible to make an arrow infinite?

wafuboe

Active Member
Joined
Dec 24, 2010
Messages
884
Solutions
2
Reaction score
26
Is there a way to make a certain arrow infinite? considering i have the classical removeammo in my server?
 
Solution
Code:
<distance id="2389" /> <!-- spear -->
<distance id="2399" breakchance="10" /> <!-- throwing star -->
<distance id="2543" action="removecount" /> <!-- bolt -->

You have this on weapons.xml
Just remove the action "removecount" and it will be infinite. Break chance can be removed so it doesnt break (like in the spear example)

Wish it helps.
Code:
<distance id="2389" /> <!-- spear -->
<distance id="2399" breakchance="10" /> <!-- throwing star -->
<distance id="2543" action="removecount" /> <!-- bolt -->

You have this on weapons.xml
Just remove the action "removecount" and it will be infinite. Break chance can be removed so it doesnt break (like in the spear example)

Wish it helps.
 
Solution
Back
Top