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^^
Sun Oct 14, 2012 2:02 pm
Forum: Scripting Help
Topic: ignore line
Replies: 1
Views: 2377

show us the script in question....
by SpiKe^^
Fri Sep 28, 2012 8:06 am
Forum: Script Requests
Topic: simple script
Replies: 12
Views: 6590

some ircops can be so very anal:)
by SpiKe^^
Thu Sep 27, 2012 6:03 pm
Forum: Script Requests
Topic: simple script
Replies: 12
Views: 6590

Why would we ban a user simply because they have been in the channel for 20 minutes??
Explain why we would need such a script:)
by SpiKe^^
Tue Sep 25, 2012 9:14 am
Forum: Eggdrop Help
Topic: Ping timeout - Is trivia responsible?
Replies: 1
Views: 4145

Can you tell me which trivia scripts you've tried. I am the author of Bogustrivia and no one has reported this issue.
by SpiKe^^
Tue Sep 25, 2012 9:00 am
Forum: Eggdrop Help
Topic: Bot deleted and copied again not work
Replies: 1
Views: 3752

There is a setting in the eggdrop config file you probably overlooked. You will need to bind hello or a word of your choosing using this example. unbind msg - hello *msg:hello and bind msg - myword *msg:hello: these allow you to change the 'hello' command to something different. Change myword to the...
by SpiKe^^
Mon Sep 24, 2012 7:38 pm
Forum: Script Support & Releases
Topic: trivia.tcl
Replies: 10
Views: 16564

Try BogusTrivia

Try BogusTrivia, it can do the questions from files in almost any format:)
by SpiKe^^
Sun Sep 09, 2012 12:15 pm
Forum: Script Requests
Topic: timebomb with dont kick ops
Replies: 2
Views: 2672

the secret to add such options in that script is in this somewhat flawed process... proc doTimebomb {nick uhost hand chan arg} { global botnick set theNick $nick if { [llength $arg] == 1 } { set theNick [lindex [split $arg] 0] } if { [string tolower $theNick] == [string tolower $botnick] } { set the...
by SpiKe^^
Fri Sep 07, 2012 5:59 pm
Forum: Eggdrop Help
Topic: What is wrong here?
Replies: 6
Views: 7286

I'm told the bind pub command is added by the irc module. In your eggdrop conf file search for: loadmodule irc If it looks more like: #loadmodule irc :remove the # at the beginning of that line. The server and channels modules must be loaded for the irc module to function. Make sure neither of those...
by SpiKe^^
Fri Sep 07, 2012 8:13 am
Forum: Eggdrop Help
Topic: What is wrong here?
Replies: 6
Views: 7286

Sounds to me like a missing eggdrop module.

What modules do you have loaded in the eggdrop config?
by SpiKe^^
Sun Sep 02, 2012 8:39 pm
Forum: Script Requests
Topic: Message + timer
Replies: 11
Views: 7880

Probably problems with finding the ads file. Let's try it with some error lines added... # set the route and file name of the channel ads file # # make the ads file as a plain text document, 1 ad per file line # set prnl(ad-file) "scripts/ad-file.txt" # The channels to msg: #chan1 #chan2 #...
by SpiKe^^
Sun Sep 02, 2012 2:34 am
Forum: Script Requests
Topic: Message + timer
Replies: 11
Views: 7880

1. timer to use static/dynamric To have the ads always on the same time interval, set min-lo & min-hi both to the same number of minutes. no working properly if in the quotes has [,],(,),%,&,!, . The issue there is with a few tcl special characters. We can get around that by storing all our...
by SpiKe^^
Sat Sep 01, 2012 10:39 pm
Forum: Script Requests
Topic: Message + timer
Replies: 11
Views: 7880

Public Read Next Line v1.2

This should do it. # The list of channel ads to run (set to {} to disable this script) # set prnl(msgs) { 1st example ad. 2nd example ad. Next ad. Last ad. } # The channels to msg: #chan1 #chan2 #etc (* = all channels) # set prnl(chans) {*} # The number of minutes between channel ads (1 or more minu...
by SpiKe^^
Sat Sep 01, 2012 8:11 pm
Forum: Script Requests
Topic: Message + timer
Replies: 11
Views: 7880

Now you have a choice of reading 'in order' or eggdrops somewhat less than 'random' :) # The list of channel ads to run (set to {} to disable this script) # set prnl(msgs) { 1st example ad. 2nd example ad. Next ad. Last ad. } # The channels to msg: #chan1 #chan2 #etc (* = all channels) # set prnl(ch...
by SpiKe^^
Sat Sep 01, 2012 7:47 pm
Forum: Script Requests
Topic: Message + timer
Replies: 11
Views: 7880

Try this: # The list of channel ads to run (set to {} to disable this script) # set prnl(msgs) { 1st example ad. 2nd example ad. Next ad. Last ad. } # The channels to msg: #chan1 #chan2 #etc (* = all channels) # set prnl(chans) {*} # The number of minutes between channel ads (1 or more minutes) # se...
by SpiKe^^
Sat Sep 01, 2012 5:36 pm
Forum: Script Requests
Topic: Message + timer
Replies: 11
Views: 7880

Would that timer read one line from the file??

Maybe keep track of the last line read, and read the next line in the file?