Back to "ali" tags

Train healing with wizard hat v2.0 by Jaseowns

1# Train healing with wizard hat 2.0 by Jaseowns
2# UO Outlands
3# Based on Tranqs script with some changes
4# check out his here: https://outlands.uorazorscripts.com/script/bd45a559-fb03-41a8-ae4d-8eabb5daaba0
5clearsysmsg 
6if not findtype 5912 self
7    overhead "No wizard hat found! Please find wizard hat to continue. Stopping." 20
8    wait 5000
9    replay
10elseif not findtype 3617 backpack
11    overhead "No more bandages! Restock!" 20
12    wait 5000
13    replay
14endif
15
16if hp = maxhp and findlayer self head as wizardhat
17    dclick wizardhat
18    wait 650
19elseif findtype 5912 backpack as wizardhat
20    dclick wizardhat
21    wait 650
22endif
23
24if not bandaging and hp < maxhp
25    hotkey "Bandage Self"
26    wait 650
27    while bandaging
28        wait 650
29        if hp = maxhp
30            if findlayer self head as wizardhat
31                dclick wizardhat
32            elseif findtype 5912 backpack as wizardhat
33                dclick wizardhat
34            endif
35        endif
36    endwhile
37endif
38
39loop