This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
-
eiSi
- Halfop
- Posts: 70
- Joined: Thu Mar 07, 2002 8:00 pm
Post
by eiSi »
hi there!
I have read 2 topics with scripts for getting the Q auth name.
if I do a /whois:
|03:46| »» (( /whois start ))
|03:46| »» —› eiSi is "eiSi" (eiSi@localhost)
|03:46| »» —› eiSi actual host is tuxX@myhost (217.160.111.123)
|03:46| »» —› eiSi is authed as "eiSi"
|03:46| »» —› eiSi is an IRC Operator
|03:46| »» —› eiSi opped in #twilightzone #feds #root4us #help #eisi #qrequest
|03:46| »» —› eiSi voiced in #services
|03:46| »» —› eiSi reg in #nepomuck
|03:46| »» —› eiSi using irc.mynet.de (mynet Headquater, Germany)
|03:46| »» —› eiSi has been idle for 49secs
|03:46| »» —› eiSi signed on 1wk 2days 20hrs 4mins 58secs ago
|03:46| »» (( /whois end ))
so, how to get this "authed as"?
Thanks for any help!
Greetz,
eiSi
-
egghead
- Master
- Posts: 481
- Joined: Mon Oct 29, 2001 8:00 pm
-
Contact:
Post
by egghead »
eiSi wrote:
if I do a /whois:
|03:46| »» (( /whois start ))
[snip]
|03:46| »» —› eiSi is authed as "eiSi"
[snip]
|03:46| »» —› eiSi using irc.mynet.de (mynet Headquater, Germany)
[snip]
|03:46| »» (( /whois end ))
so, how to get this "authed as"?
You'll need to collect it from the RAW server data. The RAW number (probably around 314 or 315) depends on the server.
irc.mynet.de doesn't exist.
-
Aron
- Halfop
- Posts: 86
- Joined: Sat Mar 15, 2003 8:35 am
Post
by Aron »
its raw 330 on Quakenet.
You can easily find it out by typing /debug @temp in mirc, then doing a /whois.
The best way to start learning is to start helping.
-
eiSi
- Halfop
- Posts: 70
- Joined: Thu Mar 07, 2002 8:00 pm
Post
by eiSi »
thanks, but I'm not that good in tcl coding :/
any hints how to realize it?
thanks!
-
caesar
- Mint Rubber
- Posts: 3778
- Joined: Sun Oct 14, 2001 8:00 pm
- Location: Mint Factory
Post
by caesar »
Code: Select all
bind raw - 330 got:auth
proc got:auth {from key arg} {
# do your stuff here..
}
Once the game is over, the king and the pawn go back in the same box.
-
eiSi
- Halfop
- Posts: 70
- Joined: Thu Mar 07, 2002 8:00 pm
Post
by eiSi »
thx! I'll try!