Tele Macro, and Bragi Status

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

Tele Macro, and Bragi Status

#1 Post by glennlevi »

First I want to ask help in making a macro for teleport skill.
Here is my current macro:

Code: Select all

automacro canttele {
console /You cannot use @warp/
status not GM Perfect Hide
status not Ruwach
location not einbech
location not aldebaran
timeout 2

call {
do conf teleportAuto_idle 0
pause 2.5
do ss 26
}
}

automacro canttele2 {
console /Warp Portal/
status not GM Perfect Hide
status not Ruwach

call {
do send 1B 01 1A 00 52 61 6E 64 6F 6D 00 00 00 00 00 00 00 00 00 00
}
}

automacro canttele3 {
console /--------------------------------------------------/
status not GM Perfect Hide
status not Ruwach

call {
do conf teleportAuto_idle 1
}
}
I separated them because putting them in 1 auto macro leads to openkore crashing. Probably because the "send" command gets repeated when you cant teleport. I wanna ask if there is a better command to make it use teleport skill, particularly one where I dont have to add send packet.

Again, note that:

Code: Select all

automacro canttele {
console /You cannot use @warp/
status not GM Perfect Hide
status not Ruwach
location not einbech
location not aldebaran
timeout 2

call {
pause 2.5
do ss 26
pause 0.5
do send 1B 01 1A 00 52 61 6E 64 6F 6D 00 00 00 00 00 00 00 00 00 00
}
}
makes kore crash, so that isnt it.

_______________________________________________________________________________________________________

One more thing I need help with is triggering a macro by Bragi status. It is a fact that Bragi buffs last up to 20 seconds after leaving the Bard's AOE range. The problem is kore doesnt show any status like "You are now: Bragi" or anything like that. I tried using

"status not EFST_POEMBRAGI" as auto macro trigger but it doesnt work. I've stuck to "You are unable to cast skill after 3 tries" console condition for the meantime, but problems occur when my connection is laggy or the server is laggy. Help is much appreciated ~ Thank you!
Raider
The Kore Devil
The Kore Devil
Posts: 672
Joined: 22 Feb 2013, 03:40
Noob?: No
Location: The Netherlands

Re: Tele Macro, and Bragi Status

#2 Post by Raider »

I would first advice you to use these for your automacros:

Code: Select all

exclusive 1
run-once 1
release #nameoftheautomacro
glennlevi
Plain Yogurt
Plain Yogurt
Posts: 58
Joined: 19 May 2011, 00:40
Noob?: Yes

Re: Tele Macro, and Bragi Status

#3 Post by glennlevi »

Raider wrote:I would first advice you to use these for your automacros:

Code: Select all

exclusive 1
run-once 1
release #nameoftheautomacro
Nice. I didnt use exclusive because I have a more important macro that I need too run immediately after its triggered. The run-once condition was the perfect solution.

My only problem now is how to trigger automacros with bragi status?
ptcarino
Plain Yogurt
Plain Yogurt
Posts: 62
Joined: 17 Jul 2010, 00:48
Noob?: No
Location: pRO Valkyrie

Re: Tele Macro, and Bragi Status

#4 Post by ptcarino »

glennlevi wrote:My only problem now is how to trigger automacros with bragi status?

Code: Select all

automacro bragi {
whenGround not Poem of Bragi
call {
do blah blah
stop
}
}
there's also "spell" and "areaSpell". but i don't know if they will work on bragi.


Source:
Image