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%)
How to heal to certain percentage when HP is lower than...
Moderator: Moderators
-
- Noob
- Posts: 1
- Joined: 31 Jan 2012, 01:29
- Noob?: Yes
-
- Developers
- Posts: 1798
- Joined: 05 Dec 2008, 05:42
- Noob?: Yes
Re: How to heal to certain percentage when HP is lower than...
There's no such functionality as is, but doCommand may be used to use heal multiple times, or to set flags.
-
- Noob
- Posts: 14
- Joined: 29 Jan 2011, 11:29
- Noob?: No
Re: How to heal to certain percentage when HP is lower than...
Code: Select all
automacro blablub {
hp < 50 %
call gravitysucks
timeout 10
}
macro gravitysucks {
hp < 95 %
do ss 28
pause 1.5
call gravitysucks
}