Page 1 of 1

Any macro for this?

Posted: Fri Dec 30, 2005 12:02 am
by kezluos
I want a simple macro that will spam one or more combat buttons during combat :D

Nothing complicated at all, just something like if auto attack is on & skill is ready, use skill. Preferably one where I can just stick my own skill name in the macro depending on what I want to be used.

Posted: Fri Dec 30, 2005 12:53 am
by TheZ
Donate, get VIP, and acquire a host of plugins that do this, and more, for you.

Otherwise, you might as well just set up Autofire to spam the buttons or something.

Posted: Fri Dec 30, 2005 4:05 am
by zanomo

Code: Select all

/if (${Me.Combat} && ${Me.AbilityReady[kick ass]}) /doability "kick ass"

Posted: Fri Dec 30, 2005 11:33 pm
by kezluos
zanomo wrote:

Code: Select all

/if (${Me.Combat} && ${Me.AbilityReady[kick ass]}) /doability "kick ass"
Thank you!! :D :D :D

Posted: Sat Dec 31, 2005 1:11 am
by oorglebot8000
That's only the single command to do what you are looking for. Try this as a simple macro to do what you wanted:

Code: Select all

Sub Main
  :ForeverLoop
	/if (${Me.Combat} && ${Me.AbilityReady[kick ass]}) /doability "kick ass"
  /goto :ForeverLoop
/return
You can make multiple copies of the /if statement to make it do differerent abilities - just change the "kick ass" in both parts of the line to what you need it to be. Next time you may want to look at how other, existing macros do stuff before asking questions though - may get a friendlier response when you have a problem. A good way to start is to paste some code and say "what's wrong with this".