Page 1 of 1

Macro and key binding

PostPosted: Mon Jan 18, 2016 5:03 pm
by Massimec
Hello guys!

i need to bind the following macro at TAB button:

/script AttackTarget()
/script TargetNearestEnemy();

how can i do that?

thx!

Re: Macro and key binding

PostPosted: Mon Jan 18, 2016 6:20 pm
by AfterAfterlife
After creating the macro, you can use a simple script to bind it:
Code: Select all
/script SetBindingMacro("Tab", "macroName");

Where "macroName" is the name of your macro (don't forget the quotes).

Then you can use...
Code: Select all
/script SaveBindings(X);

...to save your binds. Change X to 1, if you want that bind in every character in that account. Change X to 2, if you want that bind only in that character.