Code:
 
ON *:TEXT:!*:#: {
  tokenize 32 $strip($1-)
  var %not_nicks =  BlueFireGaminz
  if (!$istok(%not_nicks,$nick,32)) && (%commands_not) { msg $chan $nick Sorry WobblerQuote is on Cooldown... Try again in $var(commands_not,1).secs seconds!" | return }

  var %not_nicks_onoff = BlueFireGaminz


  if ($1 == !off) && ($istok(%not_nicks_onoff,$nick,32)) { 
    if (%commands) { msg $chan Can't a QuoteBot get any sleep around here? }
    elseif (!%commands) { set %commands 1 | msg $chan Sorry WobblerQuote is going to sleep... }
  }
  if ($1 == !on) && ($istok(%not_nicks_onoff,$nick,32)) { 
    if (!%commands) { msg $chan Didn't you hear me? Was I not scary enough? }
    elseif (%commands) { unset %commands | msg $chan WobblerQuote is BACK! Fear me! FEAR ME!. }
  }

I have this code that looks to see if the bot is on cooldown with the exception of me. However I dont want him to say it in the $chan I wan't him to private message them with their $nick.
In twitch the writing in chat /w <nickname> <message> it normally works. However if I say
Code:
{ msg $chan /w $nick Sorry WobblerQuote is on Cooldown... Try again in $var(commands_not,1).secs seconds!" | return }

However the /w isn't registering and sending the message as a whisper like I want. In the mIRC client I am seeing the message "/w <nickname> Sorry WobblerQuote is on Cooldown... Try again in # seconds". Anyone know how to get it to do it as a /w in Twitch?