PDA

View Full Version : help with this macro


memetootoo
30-01-2008, 01:42 AM
Hi I want to use this macro before the Arena starts, but it does not seem to be working properly. For self buffing I'm suppose to be able to just spam the button, for buffing other, I should be able to select a friendly target and hold Ctrl. But when ever I click on it nothing happens, and in the /s channel appears "Detect Invisibility, Unending Breath"


/castsequence reset=N [nomodifier, target=player] Soul Link, Fel Armor,
Detect Invisibility, Unending Breath
/castsequence reset=N [modifier:ctrl] Detect Invisibility, Unending Breath


Thanks

Tunga
30-01-2008, 10:26 AM
First remove the new line between "Fel Armor," and "Detect Invisiblity", this may cause an issue.

Next, "reset=N" doesn't do anything. The "n" is supposed to be replaced by the reset condition, e.g. "reset=15" or "reset=target". You can seperate multiple conditions with a forward slash "/".

Finally the "reset=bla" should come after the "[blabla]" part:

/castsequence [nomodifier, target=player] reset=target Soul Link, Fel Armor, Detect Invisibility, Unending Breath
/castsequence [modifier:ctrl] reset=target Detect Invisibility, Unending Breath

memetootoo
31-01-2008, 01:11 AM
Hi Tunga,

Thank you very much for your reply, I'll give the corrections a try. :)