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

by SpiKe^^
Sat Dec 01, 2012 12:19 pm
Forum: Script Requests
Topic: Timed Messages
Replies: 12
Views: 16385

You should search the egghelp script archive for the quote scripts, there are 40 in that catagory: http://www.egghelp.org/tclhtml/3478-4-3-0-1.htm Two I find promising are: CodeNinja Quote System ver 1.0.2 31/12/2010 by CodeNinja LegoMan's Quote Database Script ver 1.2.0 08/07/2007 by LegoMan Looks ...
by SpiKe^^
Wed Nov 28, 2012 4:02 pm
Forum: Script Requests
Topic: Simple !add !delete !edit Script
Replies: 12
Views: 16805

Try this script with all the above instructions. This one has both the commands... EDIT: and a read command to check if it's the line you are looking for before editing:) # EditTextFile Version 0.3 # # author: SpiKe^^ # # e-mail: spike<at>mytclscripts<dot>com # # webpage: http://mytclscripts.com/ # ...
by SpiKe^^
Wed Nov 28, 2012 3:21 am
Forum: Script Requests
Topic: can you edit tgis Quote script
Replies: 1
Views: 4342

Add to quotes2112.cfg and edit the new settings. # Number of minutes between each timed say random quote # Set this to "0" to disable all timed random quotes set qtimedrandomly "10" # Channels where we will do timed say random quote # Note: Channel(s) Must be in 'quotechans' &...
by SpiKe^^
Mon Nov 26, 2012 11:15 pm
Forum: Script Requests
Topic: Simple !add !delete !edit Script
Replies: 12
Views: 16805

Let's try this first. Put the code below in a text file, and name it EditTextFile.tcl # EditTextFile Version 0.1 # # author: SpiKe^^ # # e-mail: spike<at>mytclscripts<dot>com # # webpage: http://mytclscripts.com/ # # This file is Copyrighted under the GNU Public License. # # http://www.gnu.org/copyl...
by SpiKe^^
Mon Nov 26, 2012 2:11 am
Forum: Script Requests
Topic: Simple !add !delete !edit Script
Replies: 12
Views: 16805

That makes the concept more possible, but still not a simple few line script. I will think some on the subject and maybe try some on it tomorrow.
by SpiKe^^
Mon Nov 26, 2012 12:59 am
Forum: Script Requests
Topic: Simple !add !delete !edit Script
Replies: 12
Views: 16805

That's far from a simple script.... The delete function causes some real issues. Let's say you have a 5 line file: line1 line2 line3 line4 line5 You want to delete line2 and fix line4. So you delete line2 & that renumbers all lines 3-5 down one number. Then your next command, edit line 4, would ...
by SpiKe^^
Sun Nov 25, 2012 11:13 pm
Forum: Script Requests
Topic: Simple !add !delete !edit Script
Replies: 12
Views: 16805

So, what's wrong with the script you posted??

It already does add, delete, and edit of a text database file.
by SpiKe^^
Sun Nov 18, 2012 11:47 am
Forum: Scripting Help
Topic: Hints for version 6.0
Replies: 5
Views: 4607

Maybe this is the script you have questions on:

Nerfbendr's Triviabot v6.0 Beta ©Copyright 2000+ by Nerfbendr

It seems to be the only trivia game at version 6.0
by SpiKe^^
Sun Nov 18, 2012 11:18 am
Forum: Scripting Help
Topic: Hints for version 6.0
Replies: 5
Views: 4607

Eggdrop is an irc bot, and does a little channel control by default. Eggdrop has Never included a trivia game by default. So, exactly what did you download and install? When you start the bot, what does it tell you it is? I still insist this is Not an Eggdrop question, but is a trivia game question....
by SpiKe^^
Sat Nov 17, 2012 10:15 pm
Forum: Scripting Help
Topic: Hints for version 6.0
Replies: 5
Views: 4607

I'm sure this isn't the right place to post this question.

What trivia script are you trying to run?
by SpiKe^^
Sat Nov 17, 2012 11:06 am
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1103411

Maybe something like this, but I'm not familiar with the script... ... "clones" { variable eclones if {![string is integer $off] || $off <= 0} {return 0} # Add these lines (make sure you modify it with all your exempt hosts) set exemptstop 0 foreach exempthost {*@yourhost.net *@anotherhost...
by SpiKe^^
Fri Nov 16, 2012 9:38 am
Forum: Scripting Help
Topic: EggServ missing close-bracket
Replies: 2
Views: 3256

That error is caused by this line of code in the script: puthelp "NOTICE $nick :\002Usage:\002 [string trim $!ban <nick|mask> \[time\] \[reason\]" Looks to me like it has a couple of issues with that line. Let's just try making that line look more like: puthelp "NOTICE $nick :\002Usag...
by SpiKe^^
Thu Nov 15, 2012 11:54 pm
Forum: Script Requests
Topic: Alter a bit in a way that bot doesnt accept answer in caps
Replies: 5
Views: 6253

Search for this line in the script: #checks if anyone has said the correct answer on channel. Make that process look more like this: proc tgcheckanswer {nick host hand chan text} { global tgcurrentanswer tgwrngansw tgcheat set tmpanswer [regsub -all -- { } $tgcurrentanswer {}] if {[string is upper $...
by SpiKe^^
Tue Nov 13, 2012 12:47 am
Forum: Script Requests
Topic: Alter a bit in a way that bot doesnt accept answer in caps
Replies: 5
Views: 6253

Try banning those nicks that abuse your game:) With them gone, they can't copy or paste.
by SpiKe^^
Mon Nov 12, 2012 7:30 pm
Forum: Scripting Help
Topic: bot chanmode informer
Replies: 6
Views: 5311

Try adding this to your script...

Code: Select all

bind kick - *$botnick* check:kick

proc check:kick {nick uhost handle channel target reason} { 
    if {[string equal -nocase $target $::botnick]} { 
        putserv "PRIVMSG spithash :Yo, I have been kicked by $nick on $channel !!!" 
    }
}