Created: 01/03/2023, 01:36:33 AM Updated: 01/29/2023, 07:03:51 AM View Change History
1
2
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