Back to "b" tags

Basic Heal to start bandage by Jaseowns

1# Basic Heal to start bandage by Jaseowns
2# UO Outlands
3if skill "Healing" > 0
4    if findtype "clean bandage%s%" backpack as aids
5        if not bandaging and hp < maxhp
6            overhead "Missing health"
7            dclick aids
8            wft 500
9            hotkey 'Target Self'
10        elseif not bandaging and poisoned
11            overhead "Poison"
12            dclick aids
13            wft 500
14            hotkey 'Target Self'
15        elseif not bandaging and findbuff "bleed"
16            overhead "Bleed"
17            dclick aids
18            wft 500
19            hotkey 'Target Self'
20        elseif not bandaging and findbuff "disease"
21            overhead "Diease"
22            dclick aids
23            wft 500
24            hotkey 'Target Self'
25        endif
26    else
27        overhead "No bandages" 34
28    endif
29endif