
it still isn't switching on and off.
if i'm an op in a channel it gives me the "you do not have access" error.
that's what i've wrote in the remote, as you said:
ON *:text:flood_protect on:?: {
if ($nick isop #channame) {
.enable #flood_protect
.msg $nick Text flood protection is now ON
}
else msg $nick You do not have access to this command
}
ON *:text:flood_protect off:?: {
if ($nick isop #channame) {
.disable #flood_protect
.msg $nick Text flood protection is now OFF
}
else msg $nick You do not have access to this command
}