-- UPDATE --

I messed around with it myself and realized that for now i dont need the floodMODS.

However i also noticed if put this code in:
WITH " !isop
Code:
on *:TEXT:!j:#: {
  if ($nick !isop $chan) {
    msg $chan /me Mod Response
  }
  else {
    msg $chan Regular User Response 
  }
}


i get the Mod Response in a chat where i am a moderator, and no response in a chat where im not a moderator.

but if i put this:
WITH just " isop "

Code:
on *:TEXT:!j:#: {
  if ($nick isop $chan) {
    msg $chan /me Mod Response
  }
  else {
    msg $chan Regular User Response 
  }
}


then i get the Regular User Response in a chat where i am a moderator and no response in a channel where i am not a moderator.

Thanks
//Weenig

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