DennisWG / Roid-Macros

Vanilla macros on steroids!
MIT License
58 stars 16 forks source link

Modifiers and toggleable/channeled abilities #55

Open VirtualReign opened 5 years ago

VirtualReign commented 5 years ago

I've tried making a macro that would cast two different toggleable abilities with the non-toggleable option depending on whether a modifier is pressed or not.

I've tried different iterations:

/cast [mod:alt] !Drain Life; !Shoot Result: the Drain Life channel would get interrupted by Shoot, despite the button being spammed holding the modifier.

/cast [mod:alt] !Drain Life; [nochanneled] !Shoot Result: the Drain Life part of the macro would execute/behave like intended, however the Shoot command would never execute.

/cast [mod:alt] !Drain Life /cast [nomod] !Shoot Result: having the modifier pressed would result in channeling Drain Life, pressing the button with the modifier again would interrupt Drain Life and start casting Shoot.

/cast [mod:alt] !Drain Life /cast [nomod nochanneled] !Shoot Result: now the Drain Life channel would not be interrupted and could be spammed just fine, chaining Drain Life one after another, however pressing the button without the modifier would again fail to execute the Shoot command.