Good day fellow members,
I am having difficulty getting a simple script to work properly. Basically what I need is: When a specific OP joins the channel I need to automatically set +q on that OP.

My script for now is as follow:


on ^*:join:#: {
if ( $nick isop $chan || $me isop $chan ) {
/mode $chan +q $nick
else { HALT }
}
}