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

by ShavdApe
Fri Feb 11, 2011 3:46 am
Forum: Shell & Bouncer Help
Topic: Good alternative to psybnc?
Replies: 6
Views: 19170

Its running Debian-4 I believe and it basically caused my Virtual Server to run out of memory had the support guy look at it and he added more memory and it still ran out of memory apparently. 0.094 no such problems though I did receive an error stating that I was trying to run it without installing...
by ShavdApe
Thu Feb 10, 2011 8:49 pm
Forum: Shell & Bouncer Help
Topic: Good alternative to psybnc?
Replies: 6
Views: 19170

Wanted to say a quick thank you Compiled znc today although for some reason the latest one just kept making the shell crash so on 0.094 instead of 0.096 but if it works I can live with that. Instantly better connection so im happy and although a little confusing at first znc looks pretty good so tha...
by ShavdApe
Tue Feb 08, 2011 5:34 am
Forum: Shell & Bouncer Help
Topic: Good alternative to psybnc?
Replies: 6
Views: 19170

Good alternative to psybnc?

Looking for something that does the same sorts of things as psybnc, Ive used it for some time so i kinda know my way around it but lately things have gone from bad to worse with it. For a long time I had the same problem where I could connect fine one day but the next day I tried I was unable to con...
by ShavdApe
Sat Jan 08, 2011 4:16 pm
Forum: Scripting Help
Topic: Process timer
Replies: 1
Views: 3460

Process timer

Im looking to time how long a process takes, so that it can say search took xx seconds for eg. I can get it to give me in seconds but since some will complete in less than a second I was wondering how to get miliseconds any help appreciated. * edit * I think i figured it out but please tell me if th...
by ShavdApe
Sun Oct 18, 2009 1:09 pm
Forum: Scripting Help
Topic: Write to temp file
Replies: 4
Views: 2753

lol typical that it would be that easy I expected the solution to be a little more difficult than that thanks for the reply appreciated. Havent tested it but if its that easy to delete then Im sure it will be fine.
by ShavdApe
Sun Oct 18, 2009 9:17 am
Forum: Scripting Help
Topic: Write to temp file
Replies: 4
Views: 2753

Write to temp file

I need a bot to write to a temp file send that fiel via dcc then delete it is it even possible? I understand how to write to a file and I also know how to dcc that file but what about delete the file is it possible? Would I need to set a time to delete the file or could I do it after use? Im sorry i...
by ShavdApe
Mon Sep 28, 2009 2:52 am
Forum: Eggdrop Help
Topic: [SOLVED] mysql mod
Replies: 3
Views: 4122

Thanks for the reply appreciated :) works great too
by ShavdApe
Sun Sep 27, 2009 1:20 pm
Forum: Eggdrop Help
Topic: [SOLVED] mysql mod
Replies: 3
Views: 4122

[SOLVED] mysql mod

My bot dies when the mysql server goes down and while the server doesnt go down often it is a little frustrating so I wanted to know if there is anything I can do to prevent this happening as it also wont start back up if it cant connect to the mysql server. Basically the code to connect is very sim...
by ShavdApe
Fri Mar 20, 2009 6:59 pm
Forum: Scripting Help
Topic: files not closing
Replies: 5
Views: 2795

There is more than one process opening and supposedly closing files but it doesnt appear to do so I have made sure that all the processes call the files by different names so as not to get them confused in any way but nothing I do seems to fix this problem I have tried just the one process so as to ...
by ShavdApe
Fri Mar 20, 2009 6:07 pm
Forum: Scripting Help
Topic: files not closing
Replies: 5
Views: 2795

Ok heres what happened in a few minutes Files opened: stdin stdout stderr Files opened: file17 stdin file18 stdout file20 file19 stderr file16 Files opened: file22 file17 stdin file18 stdout file20 file19 stderr file21 file16 Files opened: stdin file17 stdout file18 stderr file19 file20 file21 file2...
by ShavdApe
Fri Mar 20, 2009 2:58 pm
Forum: Scripting Help
Topic: files not closing
Replies: 5
Views: 2795

files not closing

Having problems with my eggdrops not closing files to the point that they end up reaching the maximum allowed currently set at 1024 using pretty much this code set found 0 set fs [open $db r] while {![eof $fs]} { gets $fs line if {$line == $word} { set found 1 } } close $fs if {!$found} { set wfile ...
by ShavdApe
Sun Mar 15, 2009 10:45 pm
Forum: Eggdrop Help
Topic: Not sure this is an eggdrop problem but
Replies: 2
Views: 4826

thanks ill give that a try and let you know how i get on

*edit*

Yep that worked perfectly thank you very much for your help :)
by ShavdApe
Sun Mar 15, 2009 10:04 pm
Forum: Eggdrop Help
Topic: Not sure this is an eggdrop problem but
Replies: 2
Views: 4826

Not sure this is an eggdrop problem but

Well im fairly sure this is more to do with the shell but I was hoping someone here could help me. I recently changed shells now on my last shell my bots where stable but the company was no so great the new shell has far better support but sadly things where no so stable so asked there support to lo...
by ShavdApe
Mon Dec 22, 2008 1:11 pm
Forum: Scripting Help
Topic: Check Pretime
Replies: 3
Views: 3244

ideally you want time in seconds of your pretime Now im not sure what your $timestamp looks like if its just unixtime but at the time of the pre then set ago [expr $timestamp -[unixtime]] is all you need and youll be left with the amount of seconds between those two times. if timestamp is more like ...
by ShavdApe
Mon Dec 22, 2008 12:34 pm
Forum: Scripting Help
Topic: Custom log file sort of
Replies: 4
Views: 2629

This doesnt appear to work for me so im confused i tried to do it on a bind time basis and nothing also did it on a trigger and that didnt work either. bind pub - !clear clear proc clear {} { global db set f [open $db w] close $f } Actually the above code just give an error when i try Tcl error [cle...