Dont stop attack if macro run, pls!

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

Message
Author
Glikadin
Human
Human
Posts: 29
Joined: 09 Dec 2016, 09:05
Noob?: Yes

Dont stop attack if macro run, pls!

#1 Post 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
}

User avatar
fadreus
The Kore Devil
The Kore Devil
Posts: 708
Joined: 17 Nov 2017, 23:32
Noob?: No
Location: Genting Highland, Malaysia
Contact:

Re: Dont stop attack if macro run, pls!

#2 Post 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.

iRO Supporter.
Read before you ask is the wisest thing human can do.
Unless you're a cat.
Image

Glikadin
Human
Human
Posts: 29
Joined: 09 Dec 2016, 09:05
Noob?: Yes

Re: Dont stop attack if macro run, pls!

#3 Post 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

Post Reply