Page 1 of 1

Dont stop attack if macro run, pls!

Posted: 09 Mar 2018, 18:41
by Glikadin
Hello! i Have a question. This elementary macro (not EventMacro)
when this macro starts he forces the character to stop and stop the attack. Is there any way to continue the normal operation of the bot?
Me just need to execute the command after a random time.

Code: Select all

macro test {
	pause @rand(10,120)
	do relog 3600
}

Re: Dont stop attack if macro run, pls!

Posted: 09 Mar 2018, 20:46
by fadreus
Try this yet for automacro?
Openkore Macro Wiki wrote:delay <n>
Waits for <n> seconds before calling the corresponding macro.
May be used only once per automacro block.
Also the overrideAi settings.

Re: Dont stop attack if macro run, pls!

Posted: 09 Mar 2018, 21:02
by Glikadin
Thank you so much.

Code: Select all

macro test {
	set overrideAI 0
	pause @rand(10,120)
	do relog 7200
}
That's what I need