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

by Yutani
Wed Sep 02, 2009 8:59 pm
Forum: Modules & Programming
Topic: Problems compiling Eggdrop using Cygwin (OpenSSL problem)
Replies: 1
Views: 9748

Got rid of the error with ./configure --with-ssl but gives an error later on in sha.h. Error: $ make eggdrop make[1]: Entering directory `/eggdrop1.6.19/src' This may take a while. Go get some runts. gcc -pipe -mwin32 -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H -c bg.c gcc -pipe -mwin32 -g -O2 -Wall -I.....
by Yutani
Wed Sep 02, 2009 6:49 pm
Forum: Modules & Programming
Topic: Problems compiling Eggdrop using Cygwin (OpenSSL problem)
Replies: 1
Views: 9748

Problems compiling Eggdrop using Cygwin (OpenSSL problem)

Hey everyone, I'm currently trying to compile Eggdrop 1.6.19 (not ctcpfix, the older one) with tcl 8.5.7 and ssl support. The ssl patch is called eggdrop-1.6.19-ssl_and_md5_and_thread-durex-patch and everything went fine patching. However when I try to configure doing: ./configure --enable-strip it'...
by Yutani
Wed Mar 18, 2009 8:36 pm
Forum: Scripting Help
Topic: [SOLVED] MySQL TCL 'LIKE' Problem
Replies: 6
Views: 3894

Very nice! Thanks! I've managed to get it to work so I can continue programming the script.

nml375 and Sir_Fz, thanks for the effort!
by Yutani
Wed Mar 18, 2009 7:05 pm
Forum: Scripting Help
Topic: [SOLVED] MySQL TCL 'LIKE' Problem
Replies: 6
Views: 3894

I did not know that. I do have to mention that this is my very first own creation so there could be more newb mistakes in the code. But since I'm trying to learn how to use it, your comment was very helpful! I've done what you suggested but still there seems to be a problem. proc pub:search {nick ho...
by Yutani
Wed Mar 18, 2009 5:46 pm
Forum: Scripting Help
Topic: [SOLVED] MySQL TCL 'LIKE' Problem
Replies: 6
Views: 3894

proc pub:search {nick host hand chan args} { global database prefix set search [stripcodes abcgru $args] set search [::mysql::escape $search] set query [::mysql::query $database {SELECT * FROM `table` WHERE `field` LIKE '%$search%'}] set row [::mysql::fetch $query] ... This is the piece of code inc...
by Yutani
Wed Mar 18, 2009 5:11 pm
Forum: Scripting Help
Topic: [SOLVED] MySQL TCL 'LIKE' Problem
Replies: 6
Views: 3894

[SOLVED] MySQL TCL 'LIKE' Problem

Hi here, First of all I would like to say hi to the members of this forum. Been working with eggdrop for quite a while but I'm fairly new to working with Windrop in combination with MySQL. Now on with my problem... I'm trying to get a bot up and running on which you can search the database for infor...