Thread: Clique/Grid2
View Single Post
08-23-16, 02:07 AM   #5
Jopher
A Murloc Raider
Join Date: Aug 2016
Posts: 9
Originally Posted by Phanx View Post
Binding the same key to two things at the same time is always going to be unreliable. Internally it's likely triggering what's called a "race condition" where two things are told to happen at the same time, but only one thing can actually happen at the same time, so one of the two things happens first -- but since they were supposed to happen simultaneously, there's no rule for determining which one happens first. That's called "undefined behavior" and is partly random, partly determined by the technical implementation of the programming language, and maybe partly determined by the unique properties of your CPU and/or other hardware. It may, for some amount of time under given conditions, seem consistent, but it's never guaranteed, and you can't rely on it staying consistent.

The solution to your particular issue is to just use a mouseover macro on the action button, eg.

/cast [@mouseover,help] [mod:alt,@player] [] Flash Heal

...and delete the duplicate binding in Clique.
Im confused by this macro. Where is there room to put the second spell? ie. if I were to have flash heal and smite binded together, with flash heal being the mouseover.
  Reply With Quote