ok... we are back to basics with a stupidly simple snippet. this is just something i knocked up purely out of boredom as a change to all the complex scripts being submitted for once. this is for those who have co-founder status (ie founder password for a channel) to set mode +q (owner) on yourself upon joining a room. this script will work regardless of nick and mode setting on the nick ( ie +v +h +o +&)
change the #channel to what channel you want it to work on.
change password to the founder's password for the channel.
Rate it and comment on it purely on it's working ability. :)
on *:JOIN:#channel: {
if ($nick == $me) { /msg chanserv identify #channel password
/msg chanserv owner
}
}
on *:JOIN:#channel: {
if ($nick == $me) { /msg chanserv identify #channel password
/msg chanserv owner
}
}
Looks pretty bad from the stylish way.. Why not to use:
on *:LOAD:set %autoid_channel $$?=\"Enter channel name:\" | set %autoid_password $$?=\"Enter password:\"
on *:JOIN:%autoid_channel:if ($nick = $me) && (%autoid_password) { .msg chanserv identify $chan %autoid_password | .msg chanserv owner }
This would do four edits differencing from yours: