Using items

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

Moderator: Moderators

Message
Author
Shikari
Human
Human
Posts: 29
Joined: 12 Jul 2017, 05:11
Noob?: Yes

Using items

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

Mortimal
Developers
Developers
Posts: 389
Joined: 01 Nov 2008, 15:31
Noob?: No

Re: Using items

#2 Post 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
}
Please use pin function for uploading your file contents!

Shikari
Human
Human
Posts: 29
Joined: 12 Jul 2017, 05:11
Noob?: Yes

Re: Using items

#3 Post by Shikari »

Thanks.
Maybe anyone knows any other wat to avoid warp portals, casted by priests?

krishna123
Noob
Noob
Posts: 10
Joined: 17 Jul 2017, 04:01
Noob?: Yes

Re: Using items

#4 Post 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:

Shikari
Human
Human
Posts: 29
Joined: 12 Jul 2017, 05:11
Noob?: Yes

Re: Using items

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

Mortimal
Developers
Developers
Posts: 389
Joined: 01 Nov 2008, 15:31
Noob?: No

Re: Using items

#6 Post 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
}
Please use pin function for uploading your file contents!

krishna123
Noob
Noob
Posts: 10
Joined: 17 Jul 2017, 04:01
Noob?: Yes

Re: Using items

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

Mortimal
Developers
Developers
Posts: 389
Joined: 01 Nov 2008, 15:31
Noob?: No

Re: Using items

#8 Post 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
Please use pin function for uploading your file contents!

krishna123
Noob
Noob
Posts: 10
Joined: 17 Jul 2017, 04:01
Noob?: Yes

Re: Using items

#9 Post 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?

Mortimal
Developers
Developers
Posts: 389
Joined: 01 Nov 2008, 15:31
Noob?: No

Re: Using items

#10 Post by Mortimal »

use bw
Please use pin function for uploading your file contents!

Post Reply