So i'm having trouble trying to figure out why my script isn't working for mods in twitch chat, this is how I have it setup right now:

Code:
on *:TEXT:!echo *:#: {

  if ($nick == fluffehkittehn) {

    .timer 1 .03 describe # $2-
    .timer 1 .06 describe # $2-
    .timer 1 .09 describe # $2-
    .timer 1 .12 describe # $2-
    .timer 1 .15 describe # $2-
    .timer 1 .18 describe # $2-
  }
} 

And it works like it should, but that makes it so only I can use it. is there anyway I can make it so I can add names? Or am I just not doing the if ($nick isop #) { correctly...?

This is how it is when I try the so ops can use it, but nothing happens when we try.

Code:
on *:TEXT:!echo *:#: {

  if ($nick isop #) {

    .timer 1 .03 describe # $2-
    .timer 1 .06 describe # $2-
    .timer 1 .09 describe # $2-
    .timer 1 .12 describe # $2-
    .timer 1 .15 describe # $2-
    .timer 1 .18 describe # $2-
  }
} 

Any ideas?

Last edited by FluffehKitteh; 20/07/15 07:54 PM.