Back to "b" tags

Organize all our dungeon loot by Jaseowns

1# Organize all our dungeon loot by Jaseowns
2# UO Outlands
3# Put regs and stuff on shelf, put other resources on resource pile
4# Put gold in depsoit box, any tomes we have run that, items into recycler
5# restock from shelf
6@setvar! globalTimeout 650
7
8//if not position 1825 996
9//    overhead "Not at home" 34
10//    stop
11//endif
12
13if findtype "storage shelf" ground -1 -1 2 as shelf
14    menu shelf 0
15    wft 500
16    target self
17    wait 200
18    gumpclose 3232825965
19endif
20
21// our tomes
22@clearignore 
23while findtype 29104 ground -1 -1 2 as tome
24    menu tome 0
25    wait 200
26    @ignore tome
27endwhile
28@clearignore 
29
30if findtype "bank deposit safe" ground -1 -1 2 as safe
31    while findtype "gold coin" backpack as gold
32        lift gold 60000
33        drop safe -1 -1 -1
34        wait globalTimeout
35    endwhile
36endif
37
38if findtype "resource container" ground -1 -1 2 as resource
39    menu resource 0
40    wft 500
41    target self
42    wait 200
43endif
44
45if findtype "ornate elven chest" ground -1 -1 2 as recycler
46    menu recycler 1
47    wait 200
48endif
49
50if not varexist lootdropoff or not find lootdropoff ground -1 -1 2
51    overhead "Where should items go?"
52    @setvar! lootdropoff
53endif
54
55if findtype "spellbook" self 0 as mySpellBook
56    overhead "Ignoring spellbook"
57    ignore mySpellBook
58endif
59
60while findtype 24434|43206|29363|43166|22336|29348|17087|3985|8826|3827|29030|3836|5981|4248|5359|3839|3838|3843|2597|29036|48407|3834|3865|3859|3885|3856|3878|3877|3873|3861|3862|576|5123|7177|7027|3920|5131|5179|5075|3980|5060|5076|5042|10245|3938|3913|7169|3909|5063|5089|3981|7170|7033|3976|3762|5040|5103|5117|7181|7029|3568|6264|3742|5139|6263|7026|5125|3740|5121|3973|3974|5204|5105|5185|5078|5115|7175|5059|7034|3713|3915|5112|5070|5049|5119|5205|5046|3962|3934|7035|3911|7179|5106|5143|3573|3719|5177|7610|5181|3917|5132|3963|7031|5207|5056|5085|3763|5129|5187|3721|3972|5138|3570|5101|5061|5074|5142|5182|5146|6265|5090|5203|5044|5144|3932|5201|5127|3572|7173|5135|3937|3571|22326|27611|9917|3821|5356|8455|5362|45315|8454|22187|5901|7163|3617|3903|12686 backpack as item
61    getlabel item checkForBlessed
62    if "blessed" in checkForBlessed
63        overhead "Ignoring {{checkForBlessed}}" 34
64        @ignore item
65    else
66        getlabel lootdropoff desc    
67        if "125 items" in desc
68            overhead "Our box is full!" 34
69            break
70        endif
71        lift item 60000
72        drop lootdropoff -1 -1 -1
73        wait globalTimeout
74    endif
75endwhile
76
77if findtype "storage shelf" ground -1 -1 2 as shelf
78    menu shelf 1
79    wait 200
80endif