Back to "archery" tags

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.

1# Move bolts and arrows to your quiver by Jaseowns (modified)
2# ---- Modified to split them in 111 units for anti-theft purpose
3# UO Outlands
4# Description:
5#   The findlayer of quiver didn't work so
6#   we just check self using the id.
7@setvar! globalWaitTime 650
8
9// quiver - the name does not work
10if findtype 12215 self as myQuiver
11    while findtype "crossbow bolt" backpack as bolts
12        overhead "Moving bolts" 88
13        lift bolts 111
14        drop myQuiver
15        wait globalWaitTime
16    endwhile
17    
18    while findtype "arrow" backpack as bolts
19        overhead "Moving arrows" 88
20        lift bolts 111
21        drop myQuiver
22        wait globalWaitTime
23    endwhile
24endif