Made it for soloing as melee/hybrid since bandaging can be a click-fest.
Code: Select all
| bw.mac
| v1.0
#event OutOfBandages "You can't bandage"
#event MaxHeal "You cannot be bandaged"
Sub Main
/zapvars
/declare maxBind global
/varset maxBind 60 | SET TO WHATEVER YOUR MAX BIND PCT IS
/target myself
/call BindLoop
Sub BindLoop
:BindWound
/if n $char(hp,pct)>=@maxBind /call ExitSub
/doevents
/bind
/goto :BindWound
Sub Event_OutOfBandages
/call ExitSub
Sub Event_MaxHeal
/call ExitSub
Sub ExitSub
:ExitLoop
/if $target(state)!="STAND" /goto :ExitLoop
/sit
/end
