The script needs to kick all incoming users in the channel that er not voiced or opped in the channel.
After a time of 5 seconds or something.
Hi vinnie19!
You can set mode +N in your channel if you don´t want to have problems with nickchanges. And the code, for example this:
On @*:JOIN:#myroom:{
set -u6 %nick $nick
.timerkicks 1 5 userlook
}
alias userlook {
if %nick isreg # { kick # %nick reason }
else { halt }
}
If users aren´t in your access levels list, you must do this:
/msg ChanServ set #myroom restricted on
and only will join in your room users that be in your access list.
Bye
