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.

Search found 25 matches

by rolandguy
Wed Aug 04, 2004 8:57 pm
Forum: Archive
Topic: ctcp question
Replies: 5
Views: 2119

proc Verify_CTCP_TIME {nick handle dest keyword text} { should be proc Verify_CTCP_TIME {nick host handle dest keyword text} { You should try debuging via a telnet or DCC session, rather than just by writing error messages into your code...if you had been, you should have seen an error about the nu...
by rolandguy
Sun Nov 23, 2003 7:56 am
Forum: Archive
Topic: How to use .tcl command inside partyline ??
Replies: 14
Views: 4296

egghead, some of the many nuances of eggs really are a bit obtuse for newbies to be able to follow, and the ones I know are common and not FAQ'd I like to help with ;) (esp ones that I have run across and spent too much time figuring out for myself). for example...to this day, I cannot get my bot to...
by rolandguy
Sat Nov 15, 2003 5:06 pm
Forum: Archive
Topic: How to use .tcl command inside partyline ??
Replies: 14
Views: 4296

I think what he means is, he wants to check the bots MODE using putserv "MODE botnick". here's where your problem is Rept-Tile :)
And yes of course, ".con +s" is set on.
you want .console +r ;) also need to have a "set raw-log 1" in your eggdrop.conf

roland
by rolandguy
Thu Aug 21, 2003 7:43 am
Forum: Archive
Topic: fileevent ??
Replies: 7
Views: 2056

if file readable and the data is NULL (""), that's the end of the events for that channel and the handler is removed.

basicly, if {$arg==""} {do_endscript} ;)

roland
by rolandguy
Wed Aug 20, 2003 3:37 am
Forum: Archive
Topic: PM owner Logfile entrees
Replies: 1
Views: 733

hmmm....interesting way to go about things... for +m messages, you could do binds for those, not a big deal...+o log entries tho...don't think there's any way to do it :/ however ;) you could probably fake it :) have you considered having the bot DCC into itself using a putserv request, and listenin...
by rolandguy
Sat Aug 16, 2003 6:15 pm
Forum: Archive
Topic: dns reverse ip ?
Replies: 19
Views: 5955

if it's showing a name and not an IP, that means that you're checking USERHOST for someone other than you...ermmm....check $botnick lol :) is the only thing I can figure...

roland
by rolandguy
Sat Aug 16, 2003 1:32 pm
Forum: Archive
Topic: DCC Chat not working
Replies: 18
Views: 6317

ahh, damn, sorry about that...I've been basing making requests on a script I wrote that hooks up an eggdrop to a Services DCC connection...and eggy is listenening on the port :/ ok, try 2 :) disconnect from the chat server. in mIRC, go to: options->Conenct->Local Info set localhost and IP address to...
by rolandguy
Sat Aug 16, 2003 9:29 am
Forum: Archive
Topic: DCC Chat not working
Replies: 18
Views: 6317

syntax for DCC chat request: PRIVMSG <target nick> :\1DCC CHAT chat <IP> <port>\1 where: <IP> is the IP address you request that the target connect to <port> is the port that they should connect to. DCC requests are set up for the security of the user who is being asked to connect. the actuall conne...
by rolandguy
Sat Aug 16, 2003 4:12 am
Forum: Archive
Topic: DCC Chat not working
Replies: 18
Views: 6317

ahh, k, I follow then...try this from behind your NAT: /quote PRIVMSG botnick :\1DCC CHAT chat 192.xx.xx.xx 6661\1 where 192.xx.xx.xx is your *internal* NAT IP ( the \1 is ascii character 0x001...^A I think in mIRC?) let me know it it works...have a few other tricks lol roland No, nice try but it d...
by rolandguy
Sat Aug 16, 2003 4:07 am
Forum: Archive
Topic: dns reverse ip ?
Replies: 19
Views: 5955

did you restart the bot, so that it actually triggers the USERHOST command on connect? if you're already connected, the it wouldn't have set the IP yet... am guessing you probably did tho... here's everything so far all in one chunk lol...I took out writing the file just to make it easier to look at...
by rolandguy
Fri Aug 15, 2003 8:13 am
Forum: Archive
Topic: dns reverse ip ?
Replies: 19
Views: 5955

Code: Select all

proc test:pub {nick host hand chan args} { 
  global bot_ip
  putserv "notice $nick :$bot_ip" 
}
?

roland
by rolandguy
Fri Aug 15, 2003 5:08 am
Forum: Archive
Topic: Arrays
Replies: 3
Views: 1073

are you sure that the error is coming from that proc? shouldnt get that error unless reading the var :/

roland
by rolandguy
Fri Aug 15, 2003 5:01 am
Forum: Archive
Topic: LIFTING BANS
Replies: 4
Views: 1605

I guess the easiest way is to have just one bot place bans? not sure what you're using the 2 bots for, but if you really need 2, is usually best to have them delegated to seperate things, running different scripts :) for example, on then site I'm with, I have one bot that is the designated room/op/o...
by rolandguy
Fri Aug 15, 2003 1:31 am
Forum: Archive
Topic: return random nick from channel nicklist
Replies: 14
Views: 3261

chanlist <channel> [flags[&chanflags]]

*please* read the doco...it's one of the eggdrop tcl commands, think you'll find everything you need there ;)

roland
by rolandguy
Fri Aug 15, 2003 1:29 am
Forum: Archive
Topic: dns reverse ip ?
Replies: 19
Views: 5955

Ofloo wrote:
[05:43]Tcl error [test:pub]: can't read "bot_ip": no such variable
and if it would work and the bot is binded to 192.168.0.1
did you "global bot_ip" in test:pub?

roland