Back to "b" tags

This is for you Bryan by Jaseowns

1# This is for you Bryan - by Jaseowns
2# https://clips.twitch.tv/DistinctBadNightingaleDeIlluminati-yECoFnZpaAMzQHDm
3# assuming mage - no healing
4overhead "I am here for you" 69
5while not dead 
6
7    if diffhits > 30
8        while not targetexists 
9            cast "Greater Heal"
10            wft 500
11            if hp < 50
12                break
13            endif
14        endwhile
15        if targetexists 
16            target self
17        endif
18    elseif hp < 50
19        while not targetexists 
20            cast "Heal"
21            wft 500
22        endwhile
23        if targetexists 
24            target self
25        endif
26        overhead "we are really fking hurt"
27    endif
28
29    if diffhits > 20
30        overhead "We are missing 20 health"
31    endif
32
33    if hp < maxhits
34        overhead "we hurt bro"
35    endif
36
37
38    wait 200
39endwhile
40
41
42
43
44