Let me clarify, you want the automacro
priority to finish first before executing automacro
sp right?
We have a special condition called
priority.
Quoted from
http://wiki.openkore.com/index.php?title=Macro_plugin
priority <num>
Chooses which automacros should be checked before others. The smaller the <num> is, the sooner the automacro gets checked. If priority is not given, the priority is assumed to be 0. (zero: check first).
Code: Select all
automacro sp {
priority 2
sp > 50%
timeout 40
call healsp
}
automacro priority {
priority 1
sp > 50%
call healsp
}
The one with the lower priority value will be checked first.