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

by thommey
Tue Nov 21, 2023 7:56 am
Forum: Official Announcements
Topic: egghelp.org forum move
Replies: 0
Views: 21199

egghelp.org forum move

Hello all, a long time ago it became clear that, unfortunately, egghelp.org was unmaintained and slennox (the egghelp.org admin) became unreachable. The importance of egghelp.org can't be overstated for Eggdrop development and the Eggdrop community as a whole. We thank slennox wholeheartedly for ove...
by thommey
Sat Dec 31, 2022 8:10 pm
Forum: Script Support & Releases
Topic: blowcrypt
Replies: 1
Views: 3008

You are right that this is something we broke in Eggdrop 1.9.4 unintentionally. The details are that the [binds] commands returns the mask for "anyone" as *|* instead of -|- as it used to. That is only in Eggdrop 1.9.4 and not in any other version. That causes a problem for scripts that re...
by thommey
Sat Aug 05, 2017 6:13 pm
Forum: Eggdrop Help
Topic: Unable to make ssl-cert
Replies: 1
Views: 6303

It's "make sslcert", not "make ssl-cert". Where did you get "ssl-cert" from (so we can fix it)?

Edit: Oh, I just found it in the INSTALL file, I'll fix this ASAP, thanks! Let me know if it's wrong anywhere else :)
by thommey
Wed Aug 02, 2017 6:46 am
Forum: Scripting Help
Topic: TCL of google no longer works .. By FordLawnmower
Replies: 37
Views: 52793

There is so much wrong information in this thread, I don't even know where to begin. But the most dangerous one is clearly This error that comes out is an error of its version eggdrop version 1.8.1 is full of errors, my bot uses version 1.6.20 and works great.. Eggdrop1.6.x does simply not compile o...
by thommey
Sat Jun 17, 2017 2:35 pm
Forum: Script Support & Releases
Topic: Dalnet Bot Service 2.0
Replies: 23
Views: 29918

Version 1.8.1 is full of errors Oh? Do you have any concrete errors you are experiencing in 1.8.1 that you haven't in 1.6.21? I would be very interested to hear about them and fix them. Eggdrop1.8.x is actively developed and we appreciate any input to find and fix bugs on https://github.com/egghead...
by thommey
Sun Apr 23, 2017 7:24 pm
Forum: Eggdrop Help
Topic: Eggdrop vers 1.8x problems with ascii and latin characters
Replies: 6
Views: 12372

There are a lot of potential problem sources in this. Where are you getting the data from originally? If it's a script can you pastebin it somewhere or here?
by thommey
Sat Mar 25, 2017 11:49 am
Forum: Eggdrop Help
Topic: ipv4 / ipv6
Replies: 1
Views: 6038

unfortunately the way to make it work is not exactly straight-forward, which we plan to change in the future, but try this:

Code: Select all

set listen-addr 0.0.0.0
listen 3333 all
set listen-addr ::
listen 3333 all
by thommey
Fri Apr 29, 2016 6:25 pm
Forum: Eggdrop Help
Topic: Eggdrop encoding system cp1251
Replies: 1
Views: 7914

Hello, the encoding problems are something I have been working recently and would appreciate if you could test if my current solution works for you. You can download it at https://github.com/eggheads/eggdrop/archive/bug/encodings.tar.gz (or git clone -b bug/encodings https://github.com/eggheads/eggd...
by thommey
Sat Sep 06, 2014 8:34 am
Forum: Eggdrop Help
Topic: How to make special characters (foreign) appear properly?
Replies: 3
Views: 7289

It might be caused by eggdrop not supporting Utf8 properly, you can try following the steps on http://eggwiki.org/Utf-8 to get it to work.
by thommey
Sat Sep 06, 2014 8:30 am
Forum: Eggdrop Help
Topic: eggdrop does not detect joins/parts
Replies: 1
Views: 10299

The Twitch chat doesn't really use IRC. Other clients might work fine because they can work without some of the requirements eggdrop has (here: /who). However, I managed to work around some of the Twitch chat limitations by pretending that they work with a Tcl script. Try loading this: package requi...
by thommey
Mon May 19, 2014 8:08 pm
Forum: Eggdrop Help
Topic: [SOLVED] eggdrop and FBSD 10! :(
Replies: 3
Views: 7504

Posted this to another thread already, just to make sure it's read I'll answer here as well. no need to downgrade your operating system version! :) the solution is to configure with: CFLAGS="-std=gnu89" ./configure the underlying issue is the incompatibility in the inline keyword as expla...
by thommey
Mon May 19, 2014 8:06 pm
Forum: Eggdrop Help
Topic: FreeBSD 10?
Replies: 2
Views: 6813

the solution is to configure with:
CFLAGS="-std=gnu89" ./configure
the underlying issue is the incompatibility in the inline keyword as explained here between clang's and gcc's default compilation
by thommey
Sun May 06, 2012 8:20 am
Forum: Eggdrop Help
Topic: require sqlite3
Replies: 1
Views: 4131

libsqlite3-tcl is the one you need. It should find it after you installed it. A workaround might be to insert this right before [source]ing the script in your config:

Code: Select all

load /usr/lib/sqlite3/libtclsqlite3.so
(That's where ubuntu's libsqlite3-tcl installs the library to as far as I can see)
by thommey
Sun May 06, 2012 8:15 am
Forum: Eggdrop Help
Topic: eggdrop start problem!
Replies: 1
Views: 3937

It might be the ":" in your filename(s) that's causing trouble, it depends on the underlying filesystem. Does it work if you change it? As far as I know there's no IRC network that allows ":" in nicknames anyway... You could explicitely change the names for the pidfile/chanfile/u...
by thommey
Sun May 06, 2012 8:01 am
Forum: Eggdrop Help
Topic: Two same message and the second is to ignore.
Replies: 1
Views: 3717

Hey, eggdrop has a mechanism to prevent spam. It refuses to send messages more than one time if they would be too quickly. You can adjust these settings in the configfile, they're called double-help , double-server and double-mode . With the lack of more detailed information about the script you're ...