Smarter Heal by jolanar
Related: Magery
Description: This is a better version of the Razor Smart Heal hotkey.
1hotkey '> Interrupt'
2if not poisoned and diffhits = 0
3 overhead 'All Clear'
4 stop
5endif
6if poisoned and findtype "Orange Potion" backpack
7 hotkey 'Drink Cure'
8 wait 250
9endif
10if poisoned
11 cast 'Cure'
12 wft
13 target self
14 stop
15endif
16if diffhits <= 15
17 cast 'Heal'
18 wft
19 target self
20 stop
21endif
22if diffhits > 15
23 cast 'Greater Heal'
24 wft
25 target self
26 stop
27endif