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

by scr0llwheel
Fri Feb 20, 2004 7:26 pm
Forum: Archive
Topic: Brackets and timer problem
Replies: 1
Views: 1194

Brackets and timer problem

I have a short script that checks the access of a user after they join the channel. When the user joins the channel, a timer is created: utimer 3 "checkaccessafterjoin $nick $host $chan" Now, the error I'm getting is if someone joins with a nickname that has brackets in it (something like ...
by scr0llwheel
Wed Mar 12, 2003 7:39 pm
Forum: Archive
Topic: Match ? character
Replies: 3
Views: 1242

Ahh, yes, that works. I just tested it. Thanks

Good guess :P
by scr0llwheel
Wed Mar 12, 2003 7:24 pm
Forum: Archive
Topic: Match ? character
Replies: 3
Views: 1242

Match ? character

bind pubm - "* \?*" per:command I want to match any text said in the channel starting with the character ?. But since ? is a "matching character" it accepts any and all text said on the channel. How can I escape the ? so it matches against it? And I don't want to put anything in...
by scr0llwheel
Tue Mar 11, 2003 1:51 am
Forum: Archive
Topic: Userline commands help
Replies: 1
Views: 1137

Userline commands help

Ok, first and foremost, how do I configure the bot to wait, lets say, 5 minutes before displaying a user's info if they continuously join/part. For example, you join the channel at 10:00 and it shows your info. Then you join/part at 10:02 but the info shouldn't be shown because it was shown less tha...
by scr0llwheel
Mon Feb 24, 2003 8:54 pm
Forum: Archive
Topic: Legalchan proc and other code improvements?
Replies: 1
Views: 635

Legalchan proc and other code improvements?

Ok, first take a look at the code I've got so far: proc per:say { nick host handle chan text } { if { [legalchan $text] } { unset chan set chan [lindex $text 0] set text_ [lrange $text 1 end] unset text set text $text_ } putquick "PRIVMSG $chan :[join [lrange $text 0 end]]" mydebug "S...
by scr0llwheel
Sat Feb 15, 2003 9:05 pm
Forum: Archive
Topic: Suspend user access?
Replies: 1
Views: 745

Suspend user access?

I have searched the forums for the last 30 minutes but haven't found what I'm looking for so here goes... Currently, users have access to specific commands on the bot (that I coded) if they have the C flag. Now, I would like to make a command where I (the owner) can suspend their access without remo...
by scr0llwheel
Sat Feb 15, 2003 1:34 pm
Forum: Archive
Topic: Spam ban instead of kickban?
Replies: 5
Views: 1295

I know there is not DCC chat or conf file setting. I am refering to the actual source code. Which C file contains the flooding code? :)

Thanks
-scr0llwheel
by scr0llwheel
Sat Feb 15, 2003 12:26 pm
Forum: Archive
Topic: Spam ban instead of kickban?
Replies: 5
Views: 1295

I was refering to the flood channel capabilities already in Eggdrop -- not, what you call, spamming (basically advertising). To clear it up, when someone floods with 3 messages in 2 seconds (let's say), I want the bot to only ban the user, NOT kick them (allowing them to stay in the channel until th...
by scr0llwheel
Sat Feb 15, 2003 3:44 am
Forum: Archive
Topic: Spam ban instead of kickban?
Replies: 5
Views: 1295

Spam ban instead of kickban?

I was wondering where in the eggdrop does it define that the bot bans AND kicks someone when spamming? I would like to change that so it ONLY bans the person (allowing them to stay in the channel until they are unbanned).

Any help would be appreciated.

-scr0llwheel
by scr0llwheel
Fri Jan 31, 2003 2:01 pm
Forum: Archive
Topic: Change response time?
Replies: 8
Views: 2519

Thanks for your helpful post!
by scr0llwheel
Fri Jan 31, 2003 2:02 am
Forum: Archive
Topic: Change response time?
Replies: 8
Views: 2519

Change response time?

I was wondering where in the source code the amount of time between messages the bot sends is defined? I want to change it so the bot sends immediately. And, yes, I know what I'm doing -- it won't flood the bot off since I won't be using it that much (when I do, I want it to respond quickly) and I a...
by scr0llwheel
Sat Jan 18, 2003 2:05 pm
Forum: Archive
Topic: String/list matching
Replies: 3
Views: 1387

That would work for pub commands but I want this to work for both public and msg commands. And with msg commands, the 'chan' argument isn't there!

That's the problem :)
by scr0llwheel
Sat Jan 18, 2003 2:57 am
Forum: Archive
Topic: String/list matching
Replies: 3
Views: 1387

String/list matching

First off, the code: proc per_say { nick host hand args } { if { [string match "#*" $args] } { puthelp "PRIVMSG [lindex $args 1] :[join [lrange $args 2 end]]" } else { puthelp "PRIVMSG [lindex $args 0] :[join [lrange $args 1 end]]" } } Ok, I'm trying to make the bot say...
by scr0llwheel
Sat Jan 04, 2003 5:46 pm
Forum: Archive
Topic: Load multiple conf files?
Replies: 1
Views: 620

Load multiple conf files?

Currently, I have 4 bots running on the same machine. They use their own conf files but the conf files are all exactly the same (except for the 4 changes I had to make in each one to change the name of each bot and it's user file, etc.). Is there a way to instead have a master eggdrop.conf file that...
by scr0llwheel
Fri Jan 03, 2003 7:18 pm
Forum: Archive
Topic: Linking problem
Replies: 4
Views: 1339

After discussing it with other people online, they (and I) think the problem lies with the router. What ports would I need to forward to the linux box (hosting the bots) in order to get it to work? The port that I set in my conf file is 3333. I forwarded that port but I think there are other ports I...