Originally Posted By: vinnie19

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:

Code:
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 smile

Last edited by asmodeo; 21/01/08 05:06 PM.