Hey everyone,
This is a little macro collection for a better view on all, if you found a macro anywhere and want to share it, dont forget the credits.
Just write macros here please, no discussion, you can open an own thread for that, or this thread would be confusing and useless.
I will add some macros here in the first Post if i think they are good.
First of all you will have to get the Macro Plugin from Openkore, to use these Macros.
You can download it from here: [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...]
A Guide for the Macro Plugin you can find here: [Only registered and activated users can see links. Click Here To Register...]
Another Guide here from e*pvp member Noface with some useful Macros:[Only registered and activated users can see links. Click Here To Register...]
My Guide for the Macros that are coming first : [Only registered and activated users can see links. Click Here To Register...]
Macros
Change the AI mode after login to AI manual.
Changes the equip you want to defend freeze, you can do this with all other skills/eq too, the skills and equip have to be spelled in the same way they are in the tables/skills.txt, for eq you have to look in the Openkore console and write "eq" or "i" to the the names, they can be very different from your known names.
You should not change your headgear if it have another appearence then the headgear before, players would see this.
Example:
Macro from karlosmatias:
Asura Boost
The objective of this macro is to use/equip the best items right before you hit asura on enemy, in order to raise asura's dmg. In this example i used Aloevera, that increases your atk power. So, if you're not under Provoke status, openkore will use Aloevera before Asura hits the enemy (not tested in a instant cast server).
Of course you can change the items or change equips. I wouldn't recommend to change headgear 'cause other players could notice that.
Thanks~
Hope some ppl will Post more here, maybe I will find some more on epvp :P
Hideki
This is a little macro collection for a better view on all, if you found a macro anywhere and want to share it, dont forget the credits.
Just write macros here please, no discussion, you can open an own thread for that, or this thread would be confusing and useless.
I will add some macros here in the first Post if i think they are good.
First of all you will have to get the Macro Plugin from Openkore, to use these Macros.
You can download it from here: [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...]
A Guide for the Macro Plugin you can find here: [Only registered and activated users can see links. Click Here To Register...]
Another Guide here from e*pvp member Noface with some useful Macros:[Only registered and activated users can see links. Click Here To Register...]
My Guide for the Macros that are coming first : [Only registered and activated users can see links. Click Here To Register...]
Macros
Change the AI mode after login to AI manual.
Code:
automacro AImanual {
priority 1
console /WELCOME TEXT OF THE SERVER, OR SOMETHING THAT APPEAR IN THE CHAT WHEN YOU CONNECT/
call AImanualON
run-once 1
}
macro AImanualON {
pause 2 #DONT DO THIS INSTANTLY, IT WILL MAYBE NOT WORK
do ai manual #THE CONSOLE COMMAND
release AImanual
}
You should not change your headgear if it have another appearence then the headgear before, players would see this.
Code:
automacro freeze {
exclusive 1
spell Storm Gust, Frost Nova, Frost Joke, Frost Diver, Hyousyouraku
call defendfreeze
run-once 1
}
macro defendfreeze {
[
do eq #YOUR EXACT HEADGEAR NAME e.g +10 Fricca's Circlet, best if it is magic defence, because spells are the only noticeable things that appear in the console
do eq #YOUR ANTI FREEZE/AQUA ARMOR UPPER HEADGEAR, MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR LOWER HEADGEAR, MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR SHIELD , MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR GARMENT , MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR, MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR SHOES, MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR ACCESSORY , MDEF would be best.
do eq #YOUR ANTI FREEZE/AQUA ARMOR ACCESSORY , MDEF would be best.
release freeze
]
}
Code:
automacro fire {
exclusive 1
spell Fire Bolt, Meteor Storm, Kouenka
call defendfire
run-once 1
}
macro defendfire {
[
do eq +10 Fricca's Circlet
do eq Unknown #30105 [Gibbet]
do eq Unknown #30287 [Marduk]
do eq +10 Valkyrja's Shield [Thara Frog] [1]
do eq Ragamuffin Manteau
do eq Odin's Blessing [Pasana] [1]
do eq Crystal Pumps
do eq Rosary [Horong] [1]
do eq Rosary [Smokie] [1]
release fire
]
}
Asura Boost
The objective of this macro is to use/equip the best items right before you hit asura on enemy, in order to raise asura's dmg. In this example i used Aloevera, that increases your atk power. So, if you're not under Provoke status, openkore will use Aloevera before Asura hits the enemy (not tested in a instant cast server).
Of course you can change the items or change equips. I wouldn't recommend to change headgear 'cause other players could notice that.
Code:
automacro boost_a {
exclusive 1
console /Você está conjurando Extremity Fist/
# change the msg above with the msg that appears in your console/language when you cast asura
status not Provoke
run-once 1
call boost_m
}
macro boost_m {
do is @inventory(Aloevera)
release boost_a
}
Hope some ppl will Post more here, maybe I will find some more on epvp :P
Hideki