Page 1 of 1

Using items

Posted: 28 Aug 2017, 13:34
by Shikari
Hello, i never used macro before, so i come to receive some help from you, guys :)

I need a simple macro that will use an item if location changed, cuz priests warp my bots to locations that they can't escape.

i got

automacro string4 {
console /prontera./
run-once 0
exclusive 1
call butterflywing
}


How to use butterfly wing with macro?

Re: Using items

Posted: 28 Aug 2017, 16:41
by Mortimal

Code: Select all

console /prontera./
don't use this it will trigger random believe me.

to use butterfly wings:

Code: Select all

call{
do tele 2
}

Re: Using items

Posted: 28 Aug 2017, 19:23
by Shikari
Thanks.
Maybe anyone knows any other wat to avoid warp portals, casted by priests?

Re: Using items

Posted: 30 Aug 2017, 09:20
by krishna123
Hey dude,

I think what you are looking for is the same thing I am trying to do here: http://forums.openkore.com/viewtopic.php?f=32&t=212286

But unfortunately no one answered my question yet :cry:

Re: Using items

Posted: 30 Aug 2017, 10:20
by Shikari
krishna123 wrote:Hey dude,

I think what you are looking for is the same thing I am trying to do here: http://forums.openkore.com/viewtopic.php?f=32&t=212286

But unfortunately no one answered my question yet :cry:

My macro works correctly. The most popular map for botwarping are izlude/yuno/pront, so i made this

Code: Select all

automacro string3 {
console /izlude./
run-once 0
exclusive 1
call butterfly
}

automacro string4 {
console /prontera./
run-once 0
exclusive 1
call butterfly
}

automacro string5 {
console /yuno./
run-once 0
exclusive 1
call butterfly
}


macro butterfly {
do tele 2
}

Re: Using items

Posted: 30 Aug 2017, 10:31
by Mortimal
1. "." means any symbol! To do point -> "\."
2. You can do /(orthis|orthis|orthis)/ Example:

Code: Select all

automacro mapchange{
console /(izlude\.|prontera\.|yuno\.)/
run-once 0
exclusive 1
call butterfly
}

macro butterfly {
do tele 2
}

Re: Using items

Posted: 30 Aug 2017, 11:06
by krishna123
Shikari wrote:
krishna123 wrote:Hey dude,

I think what you are looking for is the same thing I am trying to do here: http://forums.openkore.com/viewtopic.php?f=32&t=212286

But unfortunately no one answered my question yet :cry:

My macro works correctly. The most popular map for botwarping are izlude/yuno/pront, so i made this

Code: Select all

automacro string3 {
console /izlude./
run-once 0
exclusive 1
call butterfly
}

automacro string4 {
console /prontera./
run-once 0
exclusive 1
call butterfly
}

automacro string5 {
console /yuno./
run-once 0
exclusive 1
call butterfly
}


macro butterfly {
do tele 2
}
But what if it is not izlude/yuno/pront? That's why I am trying to create something like
"If my bot is not on one of my maps (for example all beteween Aldebaran and Toy Factory 2), use a butterfly wing and log out for 10min".

Re: Using items

Posted: 30 Aug 2017, 11:18
by Mortimal
sorry guys but why u not use?

Code: Select all

allowedMaps <all maps u can get in on accident or not, as coma separated list>
allowedMaps_reaction 0

Re: Using items

Posted: 30 Aug 2017, 11:45
by krishna123
Mortimal wrote:sorry guys but why u not use?

Code: Select all

allowedMaps <all maps u can get in on accident or not, as coma separated list>
allowedMaps_reaction 0
WHAT :O This is exactly what I was looking for :O

What does the reaction "Respawn" mean? Use a butterfly wing or relog?

Re: Using items

Posted: 30 Aug 2017, 12:05
by Mortimal
use bw