Back to "archery" skill

Move bolts and arrow to quiver (anti-theft version) (original from Jaseowns) by DoubleDuke

Description: Make life difficult for thieves and criminals with this nice script: divide the arrows and darts into piles of 111 units from your backpack to the quiver.

Run the script and wait for all arrows/darts to be moved.

# Move bolts and arrows to your quiver by Jaseowns (modified) # ---- Modified to split them in 111 units for anti-theft purpose # UO Outlands # Description: # The findlayer of quiver didn't work so # we just check self using the id. @setvar! globalWaitTime 650 // quiver - the name does not work if findtype 12215 self as myQuiver while findtype "crossbow bolt" backpack as bolts overhead "Moving bolts" 88 lift bolts 111 drop myQuiver wait globalWaitTime endwhile while findtype "arrow" backpack as bolts overhead "Moving arrows" 88 lift bolts 111 drop myQuiver wait globalWaitTime endwhile endif