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

by MD87
Wed Dec 17, 2003 11:33 am
Forum: Archive
Topic: need a script against multiple-part floods in the channel
Replies: 9
Views: 3815

I'm not sure, I just know that you could do it on Quakenet ;) (I don't venture onto other networks much)
by MD87
Wed Dec 17, 2003 7:29 am
Forum: Archive
Topic: PhP script connecting to the eggdrop
Replies: 6
Views: 4437

From what I remember from doing something similar, it isn't actually a problem. All it means is that eggdrop couldn't get an ident reply from the server the script was running on. There's a setting in the eggdrop.conf to reduce the time it waits for this, if that helps (sorry, I can't look it up, I'...
by MD87
Wed Dec 17, 2003 7:20 am
Forum: Archive
Topic: need a script against multiple-part floods in the channel
Replies: 9
Views: 3815

Quakenet had this problem a little while ago (luckily not many people noticed, and it's been fixed). This script I wrote will ban anyone doing it for 5 minutes (you could increase it). If the people doing it aren't likely to come back then it's useless though (the people doing it in my chan were reg...
by MD87
Tue Dec 16, 2003 8:31 am
Forum: Archive
Topic: When I recieve an error can i get it to try again
Replies: 4
Views: 1085

You can use the trace command and the errorInfo variable. I wrote a tutorial on doing it for a friend a while ago - have a read here - just modify the middle bit of the code and replace it with your code to msg a channel :)
by MD87
Sat Jul 05, 2003 2:32 pm
Forum: Archive
Topic: Bot unbans all by itself
Replies: 13
Views: 2771

I was under the impression that he meant it was removing bans which it had set from the ban list (clarification of this point would help...). If it's not, and it's that the bot is removing other people's bans then setting force-expire to 0, and checking to make sure there isn't a channel specific ba...
by MD87
Sat Jul 05, 2003 9:33 am
Forum: Archive
Topic: Bot unbans all by itself
Replies: 13
Views: 2771

It will still remove channel bans even if the channel ban list is virtually empty. By default everything is set to +dynamicbans, which... <MDbot> Only activate bans on the channel when necessary? <MDbot> This keeps the channel's ban list from getting <MDbot> excessively long. The bot still remembers...
by MD87
Sat Jul 05, 2003 5:55 am
Forum: Archive
Topic: Bot unbans all by itself
Replies: 13
Views: 2771

This is standard behaviour. The eggdrop keeps an internal ban list of people who are banned, and normally only adds the ban to the channel when it needs to (i.e. when someone joins who should be banned). When you see it remove the channel ban, it will probably still be kept internally, it's just tha...
by MD87
Wed Jul 02, 2003 1:16 pm
Forum: Archive
Topic: Mode +u on quakenet
Replies: 13
Views: 3258

If it doesn't work (I think you'll get errors when the time binds are 'triggered'), try replacing this:

Code: Select all

proc domode {nick host hand chan mode victim} { 
with this:

Code: Select all

proc domode {nick host hand chan mode args} { 
:)
by MD87
Wed Jul 02, 2003 11:11 am
Forum: Archive
Topic: Cant's see bot in my channels
Replies: 2
Views: 1438

Might also be worth checking that the channel isn't invite only (+i), or registered users only (+R/r on some networks), or has a key (+k). You might need to remove these modes for the bot to join. Also, check that the bot isn't banned from the channel.
by MD87
Wed Jul 02, 2003 9:23 am
Forum: Archive
Topic: Eggdrop is running, but not on IRC
Replies: 14
Views: 3251

There are several resons why it could ping out 1. DoS/DoS/problems with host: Not a lot you can do - the host could be being hit by a DoS attack, meaning most of the things on your host will ping out (but still run). If you can SSH to your shell then this probably isn't the case 2. Scripts: Some scr...
by MD87
Wed Jul 02, 2003 9:11 am
Forum: Archive
Topic: +R Script
Replies: 19
Views: 5031

ok, where are the procs ? pub:spart and pub:ssplit . your code means nothing unless u modify the procs. Some people may learn better if they're not spoon-fed ;) Anyway, I'd use something like this: # Name of the botservice set botservicenick "X" bind splt -|- * checkR:gone bind sign -|- *...
by MD87
Tue Jun 03, 2003 12:28 pm
Forum: Archive
Topic: Directory listing
Replies: 1
Views: 1035

hehe, found it - pressed back by mistake and noticed I'd searched for "directory litsing" (and getting 0 results).

If anyone else is looking for it and is as bad a typer as me, it's the TCL command 'glob' :)
by MD87
Tue Jun 03, 2003 11:52 am
Forum: Archive
Topic: Directory listing
Replies: 1
Views: 1035

Directory listing

Hi, I'm working on a script similar to stormbot (i.e. it's a 'general purpose' script), but the filesize is getting stupidly large considering most updates are bug fixes correcting one line of code, so I've decided to make it modular - the only problem is how to detect which modules have been downlo...
by MD87
Mon Jun 02, 2003 12:34 pm
Forum: Archive
Topic: Idea: Voice and op counter
Replies: 18
Views: 3281

As a stab in the dark, your bot's name doesn't have [?] in it does it? (or anything similar) :D

// Edit - pah, should learn to read
<Botman> [19:06] #kaarel: mode change '+v Kaarel' by Botman!~Kaarel@213-35-147-242-dsl.prn.estpak.ee
by MD87
Sun May 18, 2003 1:30 pm
Forum: Archive
Topic: Bot self ban protection
Replies: 22
Views: 2931

I'm not too sure about the chanserv stuff, but this will work for general ban protection: bind mode -|- "* +b" ban:check # Catches all bans proc ban:check { nick address handle channel mode victim } { if { [string match [string tolower $victim] [string tolower "$botnick!$botname"...