by learn_more (me lol)
this is some code to paste in the remote tab from mirc script thingy, it will set your vhost, login with nickserv, and join the channels you want
<nick> is the nickname you use, and have registered with nickserv(see below code section)
<pass> is the password you used when registering your nick with nickserv
Code:
on *:START:{
;server irc.quakenet.org
;-m preserves other server you joined before this one
;server -m irc.whateveryouwant.tld
server -m irc.rizon.net
}
on *:CONNECT:{
if ($Network == rizon) {
;in case u got disconnected, u can ghost ur previous connection
/NickServ ghost <nick> <pass>
/nick <nick>
}
}
on *:NOTICE:*This nickname is registered and protected*:?:{
if (($network == rizon) && ($nick == NickServ)) {
/NickServ Identify <pass>
}
}
on *:NOTICE:*Password accepted - you are now recognized.*:?:{
if (($network == rizon) && ($nick == NickServ)) {
/HostServ on
}
}
on *:NOTICE:Your vhost of*is now activated.:?:{
if (($network == rizon) && ($nick == HostServ)) {
/join #UnknownCheats
/join #<otherchan1>
/join #<otherchan2>
}
}
to register with nickserv, first set your nick with:
/nick <thenickyouwant>
then send a msg to Nickserv to register it:
/NickServ register <pass> <email>
you will get a confirmation email
now you can request a vhost (name that displays instead of your ip)
/HostServ request <vhost>
for example, i did:
/HostServ request learn.more