I'm trying to setup a script so if specific people are given +o | +q my script will automatically deop them
am i doing something wrong here?
on *:OP:#:{
if ($address($opnick,1) == $ulevel($address($opnick,1),noop)) {
mode # -o $opnick
msg # I don't think so:)
}
}
on *:OWNER:#:{
if ($address($opnick,1) == $ulevel($address($opnick,1),noop)) {
mode # -q $opnick
msg # I don't think so:)
}
}
I know I'm probably just overlooking something but im really confused with this