mIRC Home    About    Download    Register    News    Help

Print Thread
#31875 24/06/03 09:59 AM
Joined: Dec 2002
Posts: 77
B
Babel fish
OP Offline
Babel fish
B
Joined: Dec 2002
Posts: 77
I want to use the ON LOGON event to set my nick as I connect rather than what mIRC sets it to by default.

If I understand it correctly I need to use

Code:
on ^*:LOGON:*: {
 PASS ?
 NICK frazzle
 USER ?
 halt
}


...but what exactly do I send for PASS & USER?

#31876 24/06/03 11:59 AM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
You could have just used /debug...

PASS password
NICK nickname
USER firstpartofemail "secondpartofemail" "server" :name

password = password to connect with
nickname = nickname to use
firstpartofemail = part before @ in email setting
secondpartofemail = part after @ in email setting
server = server you're connecting to
name = name

#31877 24/06/03 02:05 PM
Joined: Dec 2002
Posts: 77
B
Babel fish
OP Offline
Babel fish
B
Joined: Dec 2002
Posts: 77
thanks, duh yeah I feel so stupid now.


Link Copied to Clipboard