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

by dirty
Mon Jun 10, 2013 12:05 pm
Forum: Scripting Help
Topic: Spam protection
Replies: 3
Views: 4611

You would need to implement this in a main script for each command. You could do it by adding a channel str flag and setting the time of the last command used and check that time every time a new command is used. If 60 seconds have passed reset the time and respond to the command. But again, this wo...
by dirty
Sun May 26, 2013 4:06 pm
Forum: Scripting Help
Topic: Sockets and rehashing
Replies: 7
Views: 5793

Try this:

Code: Select all

if {![info exists serverSocket]} {
        set serverSocket [socket -server main -myaddr $botlisten(ip) $botlisten(port)]
}
Instead of this:

Code: Select all

set serverSocket [socket -server main -myaddr $botlisten(ip) $botlisten(port)]
by dirty
Fri May 10, 2013 2:44 pm
Forum: Script Support & Releases
Topic: Public Commands script (MCC v2.5)
Replies: 11
Views: 15514

I`m sorry to announce that our .tk domain is no longer active but the website can still be reached @ http://95.77.7.69
by dirty
Thu May 02, 2013 9:50 am
Forum: Eggdrop Help
Topic: Bot keeps kicking on text flood
Replies: 4
Views: 6175

What main script are you using? Normally the eggdrop handles channel flood but using a 3rd party script that handles flooding will ban the +f user if the script is not made with this protection. Usually a short fix to this is finding the proc that handles flood protection in your script and adding t...
by dirty
Tue Apr 30, 2013 5:01 am
Forum: Eggdrop Help
Topic: Bot keeps kicking on text flood
Replies: 4
Views: 6175

I`m thinking maybe you are using some kind of script in your eggdrop that handles text floods and it`s not made with any exceptions for some flags.. am I close?
by dirty
Sun Apr 14, 2013 8:50 am
Forum: Script Requests
Topic: forbid flags
Replies: 8
Views: 6455

First of all.. TRAY* not Trey :)) sorry .. second of all you can not do that to be available in any script.. you need to paste the script your using here and someone will modify your script so you can add a specific flag to someone so they will be prohibited from using the commands. This can not be ...
by dirty
Sat Apr 13, 2013 3:23 pm
Forum: Script Requests
Topic: forbid flags
Replies: 8
Views: 6455

Trey rewriting the request above because you can barely understand what your asking. Also consider giving an example of what this "script" is suppose to do.
by dirty
Sat Apr 06, 2013 1:45 pm
Forum: Script Support & Releases
Topic: Public Commands script (MCC v2.5)
Replies: 11
Views: 15514

** UPDATE **
- v2.4 released + addons

** UPDATE v2.5 **
- fixed some small bugs that people found in the script
by dirty
Mon Apr 01, 2013 11:23 am
Forum: Script Requests
Topic: Chanlogs
Replies: 9
Views: 7824

true.. you can log the messages with bind out but like thommey clearly said in that post.. it is not really compatible with the network.. what if the egg is not on the channel? what if the bot is muted? banned? etc .. the messages will still be logged even do they do not reach the channel.. so doing...
by dirty
Mon Apr 01, 2013 4:14 am
Forum: Script Requests
Topic: Chanlogs
Replies: 9
Views: 7824

like i told you before delinquent, only way to get the messages from bot in the log files is to setup this tcl in another bot
by dirty
Wed Mar 20, 2013 12:46 am
Forum: Script Support & Releases
Topic: Public Commands script (MCC v2.5)
Replies: 11
Views: 15514

Public Commands script (MCC v2.5)

Here is a script that brings most of eggdrop commands to channel plus other channel settings and protection. Will appreciate any ideas, bug reports that anyone might have. Download MCC: http://botzone.tk/files/TCL/MCC.tcl Download AddOns: http://botzone.tk/downloads.php Commands: http://botzone.tk/c...
by dirty
Thu Mar 14, 2013 3:35 pm
Forum: Script Requests
Topic: syntax checking of user input on a public trigger
Replies: 16
Views: 12107

why the hell should he use [isnum] and make a proc for that since [isnumber] is already in the eggdrop
by dirty
Thu Mar 14, 2013 5:49 am
Forum: Script Requests
Topic: syntax checking of user input on a public trigger
Replies: 16
Views: 12107

try using [isnumber] and [regsub] for that
by dirty
Tue Mar 12, 2013 5:29 am
Forum: Script Requests
Topic: auto nick change
Replies: 6
Views: 4954

why in the hell would you complicate the code that much and make a foreach to create bindings? just put a damn BIND CRON..

Code: Select all

bind cron - "*/15 * * * *" change:nick
by dirty
Sat Mar 09, 2013 11:22 am
Forum: Scripting Help
Topic: [SOLVED] need help match something from list1 to list2
Replies: 4
Views: 3877

are you looking for something like this?

Code: Select all

set found ""
foreach item "a b c d" {
     if {[lsearch -exact "e f a g b" $item] != "-1"} {
          lappend found $item
     }
}