Hi,

I have a little problem.

I want to keep an user out of a channel.
Normally I would set the access level to -100 with chanserv but the user has no registerred nick. He uses the same one all the time though. Chanserv declares access levels can only be set for registerred nicks.
Next I have been thinking about an on join script which would look like this:

on *:JOIN:#channel: {
if ($nick == usernick) mode #channel +b usernick *!*@theip
if ($nick == usernick) kick #channel usernick Message
}

Now this does not work if the user joins as guest via a webchat and change the name only after joining.

Is it possible to set access levels only by using the ip? Haven't seen such an option in the chanserv help.
Or how else could I handle this?

Thanks,
Gwion