On connect: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m added link |
||
| Line 11: | Line 11: | ||
!.msg Q@CServe.quakenet.org auth %u %p | !.msg Q@CServe.quakenet.org auth %u %p | ||
join #help.script | [[join]] #help.script | ||
join #mIRC | join #mIRC | ||
} | } | ||
| Line 17: | Line 17: | ||
Please note, that keeping your account secure is up to you, the user, and cannot be achieved by anyone/thing else. So using automaticly authenticating scripts or storing your Q-password to remote file is your own choise and only You. There's always existing security risk. Read [http://www.quakenet.org/faq/faq.php?c=160&expand=yup&l=0 Security FAQ] at QuakeNet's site for further information. | Please note, that keeping your account secure is up to you, the user, and cannot be achieved by anyone/thing else. So using automaticly authenticating scripts or storing your Q-password to remote file is your own choise and only You. There's always existing security risk. Read [http://www.quakenet.org/faq/faq.php?c=160&expand=yup&l=0 Security FAQ] at QuakeNet's site for further information. | ||
{{Author|Tovrleaf}} | |||
== See Also == | == See Also == | ||
Revision as of 15:47, 5 September 2005
The on CONNECT event triggers when mIRC connects to an IRC Server right after the MOTD is displayed.
on <level>:CONNECT:<commands>
On connect event is most commonly used to perform commands right after joining a server, such as automaticly joining channels or authenticate with Q bot.
on *:connect:{
if ($network === QuakeNet) && ($right($server, 13) === .quakenet.org) {
!var %u = username
!var %p = password
!.msg Q@CServe.quakenet.org auth %u %p
join #help.script
join #mIRC
}
}
Please note, that keeping your account secure is up to you, the user, and cannot be achieved by anyone/thing else. So using automaticly authenticating scripts or storing your Q-password to remote file is your own choise and only You. There's always existing security risk. Read Security FAQ at QuakeNet's site for further information.
| Contributed by Tovrleaf |