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

by ndrp
Fri Jun 03, 2016 1:43 pm
Forum: Eggdrop Help
Topic: userfile sharing: Disconnected from: <bot>
Replies: 15
Views: 31531

Try setting either my-hostname or my-ip to your ip/host. It helped for me, after some hairsplitting I noticed eggdrop that previously worked fine started acting up after I installed newer distro (recompile didn't help).. Turns out it was telling people to connect to 127.0.0.1 instead of eth0's addr...
by ndrp
Mon Dec 29, 2014 12:35 pm
Forum: Eggdrop Help
Topic: How to convert log file names & Pisg setup
Replies: 1
Views: 5657

I got some help. I converted filenames from mychannel.log.31May2013 to mychannel.log.20130531 by this script: #!/bin/bash find . -type f -name '*.log.*[^0-9-]*' -print0 | while read -d '' -r logfile; do mv "${logfile}" "${logfile/.log.*/.log.`date -d ${logfile#*.log.} +%Y%m%d`}" ...
by ndrp
Mon Dec 29, 2014 10:48 am
Forum: Eggdrop Help
Topic: How to convert log file names & Pisg setup
Replies: 1
Views: 5657

How to convert log file names & Pisg setup

1) In Eggdrop I have used the default log format: set logfile-suffix ".%d%b%Y" I have about 1800 log files per channel. Pisg does not recognize right order of log files. If I use for example 8 last log files Pisg outputs: 1839 logfile(s) found, parsing the last 8, using eggdrop format... A...
by ndrp
Wed Feb 26, 2014 8:44 am
Forum: Eggdrop Help
Topic: [SOLVED] Linking 1.6 eggdrop and 1.8 eggdrop
Replies: 7
Views: 12588

Fire-Fox wrote:Great to hear :)
Thanks for helping. Problem shared is half solved.
by ndrp
Wed Feb 26, 2014 8:08 am
Forum: Eggdrop Help
Topic: [SOLVED] Linking 1.6 eggdrop and 1.8 eggdrop
Replies: 7
Views: 12588

You must do something wrong, the way i postet allways works for me. It seems that Eggdropd 1.8.0 and 1.6 are not compatible by default. I found the way how to change the default handle length in Eggdrop 1.8 ( http://forum.egghelp.org/viewtopic.php?p=56894 ) scr/ehhdrop.h /* * HANDLEN note: * HANDLE...
by ndrp
Tue Feb 25, 2014 2:50 pm
Forum: Eggdrop Help
Topic: [SOLVED] Linking 1.6 eggdrop and 1.8 eggdrop
Replies: 7
Views: 12588

I deleted HubBot and LeafBot and tried to add bots as you suggested. All I got was: HubBot v1.6 [20:30] Telnet connection: leaf.host.com/56843 [20:30] Timeout/EOF ident connection [20:30] Non-matching handle lengths with LeafBot, they use 32 characters. [20:31] Telnet connection: leaf.host.com/53917...
by ndrp
Tue Feb 25, 2014 12:44 pm
Forum: Eggdrop Help
Topic: [SOLVED] Linking 1.6 eggdrop and 1.8 eggdrop
Replies: 7
Views: 12588

[SOLVED] Linking 1.6 eggdrop and 1.8 eggdrop

Hi I'm trying to link bots. HubBot is version 1.6 and LeafBot is version 1.8. I get errors: LeafBot v1.8 [18:12:00] Telnet connection: leaf.host.com/xxxxx [18:12:00] Received challenge from HubBot... sending response ... [18:12:00] Bad password on connect attempt to HubBot. [18:12:00] Lost Bot: HubB...
by ndrp
Fri Jun 07, 2013 6:03 pm
Forum: Script Requests
Topic: Channel cycle with delay (.cycle #channel 5)
Replies: 4
Views: 4114

Thanks! I already tested Madalins code. It worked.

Time format like 5m, 2h, 3d sounds good. I think the default should be minutes so !cycle #channel 5 is interpreted as minutes.
by ndrp
Thu Jun 06, 2013 5:58 am
Forum: Script Requests
Topic: Channel cycle with delay (.cycle #channel 5)
Replies: 4
Views: 4114

Channel cycle with delay (.cycle #channel 5)

Hi I would like to request a new script. Script would make eggdop cycle given channel with time delay. For example command " .cycle #channel 5 " would work like this: 1) bot leaves #channel (.chanset #channel +inactive) 2) bot waits 5 minutus 3) bot joins #channel (.chanset #channel -inact...