If anyone has been having trouble with a custombind that has a MQ2 Param, most likely a toggle, I have a fix. Encountered the problem making a twitch macro.
Problem:
/custombind set Toggle ${If[${Toggle}==1,0,1]}
Will be parsed as
/custombind set Toggle 0 (or 1, but usually 0 is the default of integers)
therefore taking away the ability to toggle.
Solution:
/noparse /custombind set Toggle ${If[${Toggle}==1,0,1]}
Pretty sure this works, although I haven't tested.


