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

by mcdarby
Sat Sep 27, 2014 2:39 pm
Forum: Eggdrop Help
Topic: Merged userfile entries and segment violation
Replies: 3
Views: 6871

Re: Merged userfile entries and segment violation

By what method did you attempt to re-add? If you tried editing the user file manually, using nano or some editor, - it is easy to introduce problems. If it were me, I would start over, like this: Be sure the bot is not running. Rename the current .user file. Start the bot with -m switch. i.e. : ./e...
by mcdarby
Sat Sep 27, 2014 1:04 pm
Forum: Eggdrop Help
Topic: Merged userfile entries and segment violation
Replies: 3
Views: 6871

Merged userfile entries and segment violation

Hi, I have a problem going on that I don't know how to fix now. Something happened that caused my user entries in the user file to get merged with one another. I tried to fix that by shutting down eggdrop and attempting to re-add where the user entries are missing. But now I am seeing this happening...
by mcdarby
Wed Jan 30, 2013 10:22 pm
Forum: Scripting Help
Topic: Trouble with a ctcp join channel script
Replies: 4
Views: 4205

Okay, after checking a few things including .channel to see who and what is being recognized as what userfile entry, it turns out I have to question how this eggdrop is reading it. Apparently, I have an A entry after an S entry showing up in .match * and I had an AllUser entry with *!*@* for the hos...
by mcdarby
Wed Jan 30, 2013 7:43 pm
Forum: Scripting Help
Topic: Trouble with a ctcp join channel script
Replies: 4
Views: 4205

Okay, there is something really wrong here, I tried your script and it seems to only work when I have -|- for the bind flag. Anything else doesn't seem to work even though I have the client added to the bot with the matching hostmask. Also doesn't seem to op the client when I put +n and +a global fl...
by mcdarby
Wed Jan 30, 2013 2:55 am
Forum: Scripting Help
Topic: Trouble with a ctcp join channel script
Replies: 4
Views: 4205

Trouble with a ctcp join channel script

I'm having a bit of trouble, I'm trying to script it so that when a ctcp from a +A global flag user is sent to the bot that is "join #channel", the bot should set -inactive for that channel and join the channel. The script I have that doesn't seem to work is currently this and I'm not sure...
by mcdarby
Sat Nov 17, 2007 8:55 pm
Forum: Eggdrop Help
Topic: bot does not connect to irc server (permission denied)
Replies: 5
Views: 8870

Re: bot does not connect to irc server (permission denied)

Hi, I'm using a simple conf, but I can't connect to any irc server I try. The bot's log says this: [12:44] Trying server irc.uunet.nl:6667 [12:44] Failed connect to irc.uunet.nl (Permission denied) what could be wrong? PS. I'm using a shell. Definitely something with the network there, I have this ...
by mcdarby
Sat Nov 17, 2007 8:49 pm
Forum: Eggdrop Help
Topic: Cannot access eggdrop.exe file to start bot/
Replies: 7
Views: 5428

Re: Cannot access eggdrop.exe file to start bot/

Hello- I am new to this forum, and the use of eggdrop and Windrop. I have a client that uses this software to run a bot in an IRC channel. I am able to install the windrop directory and assocaiated config files as well as maintain an exe file of eggdrop, however whenever i try to access the eggdrop...
by mcdarby
Sat Nov 17, 2007 8:41 pm
Forum: Eggdrop Help
Topic: Warning message in partyline after doing a restart
Replies: 5
Views: 4653

Thanks nml375. :) I had that in a bot last week and figured out what was causing it but not the "cure". :lol: The cause was another eggdrop kicking the bot (non-stop) and the resultant interaction with ChanServ. The only way to solve that is find out why the other eggdrop is kicking your ...
by mcdarby
Sat Nov 17, 2007 4:40 pm
Forum: Eggdrop Help
Topic: Warning message in partyline after doing a restart
Replies: 5
Views: 4653

It simply means your eggie has filled the internal queue of messages (see the max-queue-msg config variable). # Set here the maximum number of lines to queue to the server. If you're # going to dump large chunks of text to people over IRC, you will probably # want to raise this. 300 is fine for mos...
by mcdarby
Sat Nov 17, 2007 4:42 am
Forum: Eggdrop Help
Topic: Warning message in partyline after doing a restart
Replies: 5
Views: 4653

Warning message in partyline after doing a restart

Not sure if any of you have seen these messages, but I have just noticed these messages in my eggdrop bot's partyline after I have did a .restart due to it coming up with the wrong hostmask. <Bot> [03:32] Warning: over maximum mode queue! <Bot> [03:32] Warning: over maximum mode queue! <Bot> [03:32]...
by mcdarby
Mon Nov 12, 2007 10:20 pm
Forum: Scripting Help
Topic: Problem with URL blacklist script of mine
Replies: 13
Views: 9483

Then let me walk through what actually happens: 1. Someone triggers the badurl proc (using "http://www.testtest.test.br") 2. We start our foreach loop 3. banurlexempt is "://testtest.br", which is matched against the string written by the user, in this case it's not a match. We ...
by mcdarby
Mon Nov 12, 2007 2:09 pm
Forum: Scripting Help
Topic: Problem with URL blacklist script of mine
Replies: 13
Views: 9483

The problem here, is that you iterate through the whole list of exemts, and kick on all items not matching, and exempting on those that do match. You'll have to wait with the kicking until you've gone through the whole list, keeping some kind of match/no-match-sofar variable within the loop - and o...
by mcdarby
Mon Nov 12, 2007 3:58 am
Forum: Scripting Help
Topic: Problem with URL blacklist script of mine
Replies: 13
Views: 9483

Its not showing the text becouse you are setting text as something else when you do foreach text $badurlexempts { so it's returning $badurlexempts as $text after that. Try using something else ranther than text for $badurlexempts as $text is taken from the {nick host handle channel text} { . You sh...
by mcdarby
Sun Nov 11, 2007 5:50 pm
Forum: Scripting Help
Topic: Problem with URL blacklist script of mine
Replies: 13
Views: 9483

add either 'global badurlexempts' to the top of your proc, or use the variable notation $::badurlexempts within the proc. It's not finding the var cos its outside the proc, its in global space. eg, do either: proc badurl {nick uhost hand chan text} { global badurlexempts foreach text $badurlexempts...
by mcdarby
Sun Nov 11, 2007 5:41 am
Forum: Scripting Help
Topic: Problem with URL blacklist script of mine
Replies: 13
Views: 9483

Seems the only one triggered was this one: pubm -|U *://*.sneakydave.com 1 badurl Even so, it only triggered once. I cannot find any bindings that would match that testtesttest.com host in the list however. Think you could modify your badurl proc to something like this? proc badurl {nick uhost hand...