-- 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
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 "
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