I think i got my problem.
on $*:text:/^!points (on|off)/:#:{
if $nick !isop # { return }
if $2 == off {
set -e %point.off 1
msg # Not collecting points anymore.
}
if $2 == on {
unset %point.off
msg # Collecting points now.
}
}
I told the script to return, if the nick is a operator. Need to change that into "is not an operator". At least i hope that's that. As an alternative, if you don't care wether your other mods can use this command or not, use the original " if $nick != YOURNICKHERE { return | halt } " .