Stuck after teleport

Forum closed. All further discussion to be discussed at https://github.com/OpenKore/

Moderators: Moderators, Developers

Message
Author
ever_boy_
Developers
Developers
Posts: 308
Joined: 06 Jul 2012, 13:44
Noob?: No

Re: Stuck after teleport

#31 Post by ever_boy_ »

you should use the error message in the console condition.

Phyzoon
Noob
Noob
Posts: 10
Joined: 30 May 2009, 21:10
Noob?: No

Re: Stuck after teleport

#32 Post by Phyzoon »

I don't get any :(

suggipuss
Noob
Noob
Posts: 14
Joined: 31 Mar 2012, 18:25
Noob?: Yes

Re: Stuck after teleport

#33 Post by suggipuss »

does anyone have a fix for this yet? im using svn 8353 and im playing on iRo Classic.. problem on iro is there is no error message on kore when the teleport popup is on screen so we cant syntax it with a macro... anyone have solution yet?

Habacucc
Noob
Noob
Posts: 4
Joined: 19 Jun 2010, 22:41
Noob?: Yes

Re: Stuck after teleport

#34 Post by Habacucc »

Sorry if I'm necroing this post, but I found a solution for this problem. Instead of using the full console message error ("any work in progress (npc dialog manufacturing...)quit and try again"), I used a regular expression. Works just fine, here's the macro (thanks to Inserio for the original code):
#### Fix Double Tele ####

automacro fix_tele {
console /any work/
timeout 5
call thefix
}

macro thefix {
pause 1
do warp cancel
pause .2
do ai on
pause .2
do reload config
pause .2
do reload macros
release all
}

Locked