How to heal to certain percentage when HP is lower than...

International

Moderator: Moderators

nkidman
Noob
Noob
Posts: 1
Joined: 31 Jan 2012, 01:29
Noob?: Yes

How to heal to certain percentage when HP is lower than...

#1 Post by nkidman »

How to heal to certain percentage when HP is lower than certain percentage?

This is my normal setup right now

(Use heal when hp is lower than 50%)

useSelf_skill Heal {
lvl 1
hp < 50%
}

I wanna do this
(Use heal when hp is lower than 50% until it reaches 95%)
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: How to heal to certain percentage when HP is lower than...

#2 Post by EternalHarvest »

There's no such functionality as is, but doCommand may be used to use heal multiple times, or to set flags.
-haseo-
Noob
Noob
Posts: 14
Joined: 29 Jan 2011, 11:29
Noob?: No

Re: How to heal to certain percentage when HP is lower than...

#3 Post by -haseo- »

Code: Select all

automacro blablub {
   hp < 50 %
   call gravitysucks
   timeout 10
}

macro gravitysucks {
   hp < 95 %
   do ss 28
   pause 1.5
   call gravitysucks
}