Hey Guys,

Can anyone tell me what i have done wrong here?

i want it to give 1 response if a mod triggers the account, and 1 response if a regular user triggers the command:

Code:
on *:TEXT:!j:#: {
  if ($nick !isop $chan) {
    if ((%floodMODS) || ($($+(%,floodMODS.,$nick),2))) { return }
    set -u10 %floodMODS On
    set -u30 %floodMODS. $+ $nick On
    msg $chan /me [MOD RESPONSE]
  }
  else {
    msg $chan [REGULAR USER RESPONSE].
  }
}


Thanks
//Weenig
Scripting novice

Last edited by Weenig; 09/04/16 01:28 PM.