Back to "drop" tags

Bapeth's Object Drag & Dropper by barryroser

Related: Snippet dragdrop

Description: Use this to carry a heavy item quickly to your destination.

1# Bapeth's Object Drag & Dropper
2#
3# Open the party menu to clear the object and set anew
4#
5# Script starts here
6
7if not find "groundobject" ground
8    hotkey "Set last target"
9    wft 500
10    overhead "Select an object to drag" 88
11    while targetexists 
12        //donothing
13    endwhile
14    @setvar "groundobject" lasttarget 
15    overhead "Object set" 87
16endif
17
18if find "groundobject" ground -1 -1 2
19    drop backpack
20    lift "groundobject" 6000
21    drop 0
22    while queued
23        //donothing
24    endwhile
25endif
26
27if gumpexists 3527489586
28    gumpclose 3527489586
29    overhead "Ground Object Cleared" 45
30    @unsetvar "groundobject"
31endif
32loop