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.
Help for those learning Tcl or writing their own scripts.
l.kleijn
Voice
Posts: 33 Joined: Sun May 18, 2014 10:02 am
Post
by l.kleijn » Fri Jun 10, 2022 8:23 am
proc pub:whois {nick host hand chan arg} {
global botnick opchan
set unick [lindex $arg 0]
whois1 from keyword
}
bind raw - 319 server:whois1
proc whois1 {from keyword arg} {
global botnick opchan
putserv "PRIVMSG $opchan :\002WHOIS\002: $arg"
}
How can i fix this after i do .whois Leon
that an eggdrop show the whois of mIRC
SpiKe^^
Owner
Posts: 831 Joined: Fri May 12, 2006 10:20 pm
Location: Tennessee, USA
Contact:
Post
by SpiKe^^ » Fri Jun 10, 2022 9:14 am
Maybe you could explain better what you are after...
l.kleijn
Voice
Posts: 33 Joined: Sun May 18, 2014 10:02 am
Post
by l.kleijn » Fri Jun 10, 2022 10:36 am
I want a whois same as mIRC but then on an eggdrop.
CrazyCat
Revered One
Posts: 1305 Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:
Post
by CrazyCat » Sun Jun 12, 2022 5:47 pm
Do you mean you want to do !whois <nick> in chan and the eggdrop returns you a notice (or pm) giving you the whois response ?
If yes, this is dumb. Why use an eggdrop as relay for a basic command, doing a /whois directly is better than doing !whois with all the complexities needed in the script.
If no, I don't understand what you're waiting for.