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

by zerodtk
Sat Jul 04, 2009 6:00 am
Forum: Eggdrop Help
Topic: Need help (-n)
Replies: 6
Views: 5868

i had the same problem last night. what it did was changing the "eggdrop" file i've used the wget stuff to get the eggdrop to my system, compiled it, done everything which is necessary...after typing ./eggdrop -m eggdrop.conf nothing happened. it said the bot is running but it wasn't..afte...
by zerodtk
Sat May 02, 2009 10:06 am
Forum: Eggdrop Help
Topic: adding IPV6 IP as server
Replies: 3
Views: 3803

anyone? :)
by zerodtk
Sun Apr 19, 2009 10:43 am
Forum: Eggdrop Help
Topic: adding IPV6 IP as server
Replies: 3
Views: 3803

yes, it is patched...it connects to the server host but it pings out, than connects back after 1hour..giving the msg "Timeout: connect to..."
by zerodtk
Sun Apr 19, 2009 6:40 am
Forum: Script Support & Releases
Topic: !tv script
Replies: 2
Views: 4469

there's a script like this called tvshow.tcl written by Ryal it gets the data from episodeworld.com ##################### # EPisodeWorld 1.4 # ##################### # Enable with .chanset #channel +epw # Set your chan name here set mychan "#szabadka" # e.g. set tgcmdhelp "helpme"...
by zerodtk
Sun Apr 19, 2009 6:28 am
Forum: Shell & Bouncer Help
Topic: how to make multiple BNC join/part together
Replies: 1
Views: 10078

there was a script for psybnc making the users act like bots...btw, what about making a script for it ?:) i will post the script when i find it;P
by zerodtk
Sun Apr 19, 2009 6:22 am
Forum: Eggdrop Help
Topic: adding IPV6 IP as server
Replies: 3
Views: 3803

adding IPV6 IP as server

hello there! is there any way to add an ipv6 ip as a server in the eggdrop.conf? i was searching the web for a solution but with no luck... the only thing i'v found is adding ipv6 to psybnc :( a friend Ofloo said it's possible somehow, but he can remember how :( [@Ofloo]: i think it was with [::] th...
by zerodtk
Thu Mar 26, 2009 7:11 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

hahahaha the solution was in front of my eyes! :DDD thanks for your help :)) proc isdupe {url} { set r 0 if {![catch {open "scripts/ignored.txt" r} rf]} { while {![eof $rf]} { if {[string match -nocase *${url}* [gets $rf]]} { set r 1 break } } close $rf } return $r } and the ignored urls g...
by zerodtk
Thu Mar 26, 2009 6:00 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

thanks, the error is now gone... so i just need to change ${url} to what i want to be ignored? something like proc isdupe {url} { set r 0 if {![catch {open "/home/zerodtk/public_html/log/index.php" r} rf]} { while {![eof $rf]} { if {[string match -nocase *szabadka* [gets $rf]]} { set r 1 b...
by zerodtk
Thu Mar 26, 2009 1:31 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

what about this one came from Ofloo proc isdupe {url} { if {![catch {open $catch:path r} rf]} { set r 0 while {![eof $rf]} { if {[string match -nocase *${url}* [gets $rf]]} { set r 1 break } } close $rf } } and adding it where it catches the urls proc catch_url_pubm {nick host hand chan arg} { if {[...
by zerodtk
Thu Mar 26, 2009 10:46 am
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

heya, hope you don't mind one more question...
how can i make it ignore its own url?
something like
*szabadka.org*

thanks in advance
by zerodtk
Thu Mar 26, 2009 8:52 am
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

hey! all working! everything's just fine :)

thanks again
by zerodtk
Wed Mar 25, 2009 10:15 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

it works!!! thank you very much!!!
i can't believe it all works now :)

i will put it in the full script tomorrow morning and will let you know :)

thanks again!!
by zerodtk
Wed Mar 25, 2009 9:58 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

i think we are in the finish..
but there's one more thing

Code: Select all

header goes here
<!-- post here ---
http://www.google.com/
footer goes here
the last > from <!-- post here ---> is missing...
everything else is just fine :)
by zerodtk
Wed Mar 25, 2009 9:36 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

it was set to w+ not a+ actually its not deleting the header now but deletes the <!-- post here ---> and the first few characters of the footer.. proc catch_url_pubm {nick host hand chan arg} { if {[regexp -nocase {(http://[^\s]+)} $arg -> url]} { if {![catch {open scripts/urllogger.txt "a+&quo...
by zerodtk
Wed Mar 25, 2009 9:11 pm
Forum: Scripting Help
Topic: [SOLVED] Need help with file handling - thanks nml375!
Replies: 19
Views: 10089

the error is now gone this what happens the file looks like header goes here <!-- post here ---> footer goes here instead of putting the post between <!-- post here ---> and footer it looks like <!-- post here ---> http://www.google.com/2 it deletes the footer and the header too :( and just changes ...