| View previous topic :: View next topic |
| Author |
Message |
Patty Voice
Joined: 27 Apr 2006 Posts: 3
|
Posted: Thu Apr 27, 2006 7:16 am Post subject: AuthNick |
|
|
I wanna make a bot that's grounded in Quakenet Auth's
this means that i need a little script that will retrieve the users auth account
so that i can read if the auth account is in a text file...
just like the $auth($nick) in mIRC scripting :S
i will apriciate all kinds of help
- Patty |
|
| Back to top |
|
 |
DragnLord Owner

Joined: 24 Jan 2004 Posts: 711 Location: C'ville, Virginia, USA
|
Posted: Thu Apr 27, 2006 11:36 am Post subject: |
|
|
| $auth is not part of mIRC's default variables, it must be part of some script package. |
|
| Back to top |
|
 |
Patty Voice
Joined: 27 Apr 2006 Posts: 3
|
Posted: Thu Apr 27, 2006 11:58 am Post subject: |
|
|
$auth() is a part of a script, yes, and im asking if there is such a thing in TCL, og if maybe someone can give me a hint how to make one  |
|
| Back to top |
|
 |
krimson Halfop

Joined: 19 Apr 2006 Posts: 86
|
Posted: Thu Apr 27, 2006 3:46 pm Post subject: |
|
|
| Code: | bind raw - 330 get_auth
proc get_auth {x y z} {
putlog "[lindex [split $z " "] 1] is authed as [lindex [split $z " "] 2]"
} |
for this to work you'd have to include it in any /whois script
(i've tested it with swhois v1.03) |
|
| Back to top |
|
 |
|