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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
-
Patty
- Voice
- Posts: 3
- Joined: Thu Apr 27, 2006 7:12 am
Post
by Patty »
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
-
DragnLord
- Owner
- Posts: 711
- Joined: Sat Jan 24, 2004 4:58 pm
- Location: C'ville, Virginia, USA
Post
by DragnLord »
$auth is not part of mIRC's default variables, it must be part of some script package.
-
Patty
- Voice
- Posts: 3
- Joined: Thu Apr 27, 2006 7:12 am
Post
by Patty »
$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
-
krimson
- Halfop
- Posts: 86
- Joined: Wed Apr 19, 2006 8:12 am
Post
by krimson »
Code: Select all
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)