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 453 matches

by GodOfSuicide
Sat Sep 11, 2004 8:46 am
Forum: Archive
Topic: Distro Bot
Replies: 8
Views: 1900

1) if you dont correct your upper/lowercase typing noone will help you
2) WTF is a distro bot?
3) There is an eggdrop port for Windows called Windrop
by GodOfSuicide
Tue Aug 31, 2004 6:33 am
Forum: Archive
Topic: own Q
Replies: 3
Views: 1230

90% of what you posted are featured in QNet's L-Bot. The only thing from your list that's not covered by L is the Q-Auth-Ban, and you can find multiple scripts for it in the TCL archive.
by GodOfSuicide
Fri Aug 27, 2004 3:06 pm
Forum: Archive
Topic: tcl command from public
Replies: 10
Views: 3399

he doesnt need to run rm, he could do plenty of other stuff (>, >>, && and so on) as parameter to endanger your system
this trigger is equail to a full shell access on your box (if the user knows what he's doing)
by GodOfSuicide
Tue Aug 24, 2004 4:30 pm
Forum: Archive
Topic: Is this possible to make?
Replies: 3
Views: 2358

-> junkyard for bogus topic name
by GodOfSuicide
Sat Aug 21, 2004 7:51 am
Forum: Archive
Topic: regexp question
Replies: 3
Views: 1315

if you work with { } you dont have to bother escape chars
(e.g : set x "he said \"blub\"" = set x {he said "blub"}
by GodOfSuicide
Fri Aug 20, 2004 8:11 pm
Forum: Archive
Topic: regexp question
Replies: 3
Views: 1315

Code: Select all

set FindThis {[A-Z][a-z]+_[0-9][0-9]}
regexp $FindThis $text 
by GodOfSuicide
Thu Aug 19, 2004 8:06 am
Forum: Archive
Topic: does a 'piespy for eggdrops' exist?
Replies: 8
Views: 3150

I only have it running once every 30 minutes and it's creating no dramas with anything. 30 mins? Once a day does the trick i'd say... well chatstats is verry nice , and if u want more graphical stuff u should maybe try mrtg or rdtools RRDTool is very nice indeed as long as you work with open / exec...
by GodOfSuicide
Wed Aug 18, 2004 4:39 am
Forum: Archive
Topic: does a 'piespy for eggdrops' exist?
Replies: 8
Views: 3150

pisg I think is just perfect for IRC channels that want a nicely formatted stats page that is easily configured :) well, there are many pisg-clones out there which are much faster pisg allways processes ALL log files which consumes an awfull lot of CPU-time. The often-suggested way to store the sta...
by GodOfSuicide
Tue Aug 17, 2004 4:33 pm
Forum: Archive
Topic: does a 'piespy for eggdrops' exist?
Replies: 8
Views: 3150

piespy is really nice, but the CPU load is way too high

i once thought about porting it to TCL, but the math and statistics behind the code were too complex for me
by GodOfSuicide
Sat Aug 14, 2004 7:23 pm
Forum: Archive
Topic: search btw need a release script
Replies: 1
Views: 1170

get yourself a copy of the TCL manual and check: open, puts, gets, close for the file stuff then take a look at the eggdrop TCL command list and check for: putserv, bind pub here's a little code that allways comes handy (thanks to sL iirc) set data [split [read [set inf [open $file r]]][close $inf] ...
by GodOfSuicide
Sat Aug 14, 2004 1:11 am
Forum: Archive
Topic: The INVITE problem,again
Replies: 10
Views: 2539

i thinks he wants the user to be invited by the bot bind msg - "invite" msg:invite proc msg:invite { nick uhost hand arg } { set chan [lindex [split $arg] 0] if {[string tolower $chan] == "#mychan"} { putserv "INVITE $nick $chan" } } you maybe want to add a check if the...
by GodOfSuicide
Fri Aug 13, 2004 11:16 am
Forum: Archive
Topic: Best way to develop TCL-scripts?
Replies: 14
Views: 4005

Yeah, i make scripts in notepad and then i test them in windrop :P I dont wanna test them on my eggies because they fall if i make something wrong in script and i need to run them again :P why? load them with .tcl and you see if there is an error-msg, but the bot doesnt stop. i have 3 bots i just u...
by GodOfSuicide
Fri Aug 13, 2004 5:42 am
Forum: Archive
Topic: Best way to develop TCL-scripts?
Replies: 14
Views: 4005

Writing onto the shell using SSH (Putty, SecureCRT) is really what can I say a bit slow and the editors aren't that good. i mainly use them because i dont have to upload the files again every time i change them. The best way around that would be a "bridge" between your PC and the shell, i...
by GodOfSuicide
Tue Aug 10, 2004 4:45 am
Forum: Archive
Topic: Best way to develop TCL-scripts?
Replies: 14
Views: 4005

i prefer writing the scripts with pico/vi on the shell and testing them with a bunch of putlogs (eggdrop with .tcl from the partyline) or puts (tclsh) and allways on error i display the content of $errorInfo
by GodOfSuicide
Fri Aug 06, 2004 5:54 am
Forum: Archive
Topic: Character limit on bot<>bot communication?
Replies: 7
Views: 2414

if you really use privmsg: the IRCD's of nearly all networks limit the number of chars you can send.
For botnet communication: i dont know if there is a limit, if there is then just split the line and send it in smaller parts