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 Sep 01, 2012 5:25 pm
Forum: Script Requests
Topic: Autonick changer + some futures
Replies: 12
Views: 6897

On a rehash, the existing timer will run out at the old timer settings, as it was already set & running.

Any new timers starting after the rehash will follow the new current settings, as the bot has no memory of the old settings.
by SpiKe^^
Sat Sep 01, 2012 4:28 pm
Forum: Script Requests
Topic: Autonick changer + some futures
Replies: 12
Views: 6897

So, you would like more accuracy. Let's adjust the code to this. # set a list of nicks to use (set to {} to disable this script) # set tnks(nicks) { nick1 nick2 anothernick etc } ;# end of set nicks # # how long the bot stays in channel/s (in minutes) # set tnks(inchan) "2" # how long the ...
by SpiKe^^
Fri Aug 31, 2012 6:09 pm
Forum: Script Requests
Topic: Search txt file for matching text and display
Replies: 5
Views: 3765

Edited the above code some...
You should get the code again.
by SpiKe^^
Fri Aug 31, 2012 5:00 pm
Forum: Script Requests
Topic: Search txt file for matching text and display
Replies: 5
Views: 3765

Cats, take 2

You're right, that code won't run. Had a few string match issues:) This code should run without error. # set the route and file name of the categories file # set cats(file) "scripts/Categories.txt" # set the command to list all the categories # set cats(ccmd) "!categories" # set ...
by SpiKe^^
Thu Aug 30, 2012 10:36 pm
Forum: Script Requests
Topic: Search txt file for matching text and display
Replies: 5
Views: 3765

Try this and see what we have so far:) # set the route and file name of the categories file # set cats(file) "scripts/Categories.txt" # set the command to list all the categories # set cats(ccmd) "!categories" # set the command to read one of the categories # set cats(rcmd) "...
by SpiKe^^
Tue Aug 28, 2012 11:43 pm
Forum: Script Requests
Topic: Autonick changer + some futures
Replies: 12
Views: 6897

See if this helps. # set a list of nicks to use (set to {} to disable this script) # set tnks(nicks) { nick1 nick2 anothernick etc } ;# end of set nicks # # how long the bot stays in channel/s (in minutes) # set tnks(inchan) "5" # how long the bot stays out of channel/s (in seconds) before...
by SpiKe^^
Tue Aug 28, 2012 7:50 pm
Forum: Script Requests
Topic: Autonick changer + some futures
Replies: 12
Views: 6897

Next!

Maybe do the nicks something like this... # set a list of nicks to use (set to {} to disable this script) # set tnks(nicks) { nick1 nick2 anothernick etc } ;# end of set nicks # # how long the bot stays in channel/s (in minutes) # set tnks(inchan) "5" # how long the bot stays out of channe...
by SpiKe^^
Mon Aug 27, 2012 8:09 am
Forum: Script Requests
Topic: Autonick changer + some futures
Replies: 12
Views: 6897

oops.

sounds like a missing global:) set tnks(nicks) {} ;# a list of nicks to use (set to {} to disable this script) # set tnks(inchan) "5" ;# how long the bot stays in channel/s (in minutes) # set tnks(gone) "15" ;# how long the bot stays out of channel/s (in seconds) # ;# before join...
by SpiKe^^
Fri Aug 24, 2012 7:32 pm
Forum: Script Requests
Topic: Autonick changer + some futures
Replies: 12
Views: 6897

Maybe something like this... set tnks(nicks) {} ;# a list of nicks to use (set to {} to disable this script) # set tnks(inchan) "5" ;# how long the bot stays in channel/s (in minutes) # set tnks(gone) "15" ;# how long the bot stays out of channel/s (in seconds) # ;# before joinin...
by SpiKe^^
Tue Aug 21, 2012 8:42 pm
Forum: Script Support & Releases
Topic: Bogus trivia help
Replies: 2
Views: 6852

RE: Bogus trivia help

Thanks for running BogusTrivia. Sorry to hear you are having problems. BogusTrivia: No questions loaded.". Sounds like the questions never loaded. Look on the shell at: /scripts/t2/ques/ dir and see if there are files in the bogus database. Let me know what you find there. Try loading the quest...
by SpiKe^^
Tue Aug 21, 2012 6:33 pm
Forum: Script Requests
Topic: Command to add text to a file
Replies: 4
Views: 3663

Re: Try This.

Let's also message the bot operator, if is online,:) set report(file) "scripts/report.txt" set report(thanks) "thanks for the report:)" set report(owner) "" ;# set one nick to message, telling of the new report ("" = message off) # bind pub -|- .report report:...
by SpiKe^^
Tue Aug 21, 2012 12:14 am
Forum: Script Requests
Topic: Command to add text to a file
Replies: 4
Views: 3663

Try This.

Let's try this. set report(file) "scripts/report.txt" set report(thanks) "thanks for the report:)" bind pub -|- .report report:tofile proc report:tofile {nk uh hn ch tx} { global report set open [open $report(file) a] puts $open "$nk reported: $tx" close $open puthelp &...
by SpiKe^^
Mon Aug 13, 2012 8:09 pm
Forum: Script Support & Releases
Topic: New BogusTrivia 2.06.4.6 Released
Replies: 4
Views: 11950

New BogusTrivia 2.06.4.6 Released

The new version of BogusTrivia has just been released. Get your copy today at the egghelp script archive. ################################################################### # # # Version 2.06.4.6 Release Notes: (Patch for Version 2.06.4.5) # # # # -> New Updated File: t-2.commands.tcl <- # # Bug Fi...
by SpiKe^^
Mon Aug 06, 2012 11:36 pm
Forum: Script Support & Releases
Topic: help sysinfo tcl
Replies: 2
Views: 5620

lets try this

Let's try this. Search for this line in the script.... putlog "sysinfo.tcl - Loaded." And add these lines just before that line... bind time - "00 * * * *" ::sysinfo::Timed proc ::sysinfo::Timed {mn hr da mo yr} { global botnick foreach chan [channels] { if {[botonchan $chan]} { ...
by SpiKe^^
Sat Jul 28, 2012 12:35 pm
Forum: Script Support & Releases
Topic: New BogusTrivia 2.06.4.5 Released
Replies: 18
Views: 23118

Well there is something up with that shell, and I'm done guessing what that might be:) Use another shell, as bogus runs fine everywhere else.