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.

Reverse Dnsing?

Old posts that have not been replied to for several years.
Locked
G
Gothic-Angel
Op
Posts: 109
Joined: Mon Sep 23, 2002 9:46 pm

Reverse Dnsing?

Post by Gothic-Angel »

Well I wrote a small tcl, that when someone types a trigger in the channel it gives him information that he heeds, and then notices the ops. The channel is a netmeeting channel and the script is designed to help the ops with verifying peope.

I'd like the tcl to display the person's ip in op's notice. I'v it to display the host, but im not sure how to make it display the ip.

I'll post the code from my tcl. Mind you im new to tcl Just started two day's ago been reading up quite a bit on in it. THat suninet site doesnt help as much as I'd like. Any recommendations on where to learn would be great.


Code: Select all

bind pub - !verify verify

proc verify {nick host hand chan text} {

    putserv "NOTICE $nick : $nick, Verification involves having an op verify you on cam.  Please state your age/sex in channel and have Netmeeting open and your cam pointed at your face.  An op will contact you momentarily to be verified.  Thank you."
    putserv "NOTICE @#adultnetmeeting :OPS, $nick wishes to be verified. So please see to it that he/she is $host"
}
Locked