Stop all macros from trigerring?

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

Moderator: Moderators

glennlevi
Plain Yogurt
Plain Yogurt
Posts: 58
Joined: 19 May 2011, 00:40
Noob?: Yes

Stop all macros from trigerring?

#1 Post by glennlevi »

I just wanna ask if there is some way to stop all automacros from triggering through another automacro. Something like ai manual command, except it works on macros. All I found was how to stop the "current" running macro.

Reason:
The police in my server gives five chances to answer antibot questions. My bot can answer, but not 100% accurately. It answers through automacros. When your reach the final question, the line "fïve of fïve" will be logged on console. If possible I want to create an automacro that stops or cancels all other automacros from triggering when kore gets to the fifth question without getting any of the earlier ones correct.

Here is my template for the "assumed" macro:

Code: Select all

automacro almostjailed {
console /fïve of fïve/
priority 1

call {
do ????      <<<<<----------- THIS ONE?
do play C:\Whistle.wav
}
}
iMikeLance
Moderators
Moderators
Posts: 208
Joined: 01 Feb 2010, 17:37
Noob?: No
Location: Brazil - MG

Re: Stop all macros from trigerring?

#2 Post by iMikeLance »

automacro almostjailed {
console /fïve of fïve/
priority 1

call {
lock all
do play C:\Whistle.wav
}
}
glennlevi
Plain Yogurt
Plain Yogurt
Posts: 58
Joined: 19 May 2011, 00:40
Noob?: Yes

Re: Stop all macros from trigerring?

#3 Post by glennlevi »

iMikeLance wrote:
automacro almostjailed {
console /fïve of fïve/
priority 1

call {
lock all
do play C:\Whistle.wav
}
}
Thank you!
Its weird that I missed that, but saw "stop" command lol.