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

by MC_8
Tue Apr 29, 2003 10:03 am
Forum: Archive
Topic: Anyone know how to script this kind of tcl
Replies: 10
Views: 2165

I gave an example of how you COULD code it. You take that information and read about each command in the manual to see what each does to get a better understanding of what your trying to do.

And egghead, fuc|< you. You need to learn how to talk to people with respect, son.
by MC_8
Mon Apr 28, 2003 6:14 pm
Forum: Archive
Topic: Anyone know how to script this kind of tcl
Replies: 10
Views: 2165

All code on a forum should be considered an example and not a full blown script with all the bells and wistles.
by MC_8
Mon Apr 28, 2003 11:40 am
Forum: Archive
Topic: Site Database Script
Replies: 4
Views: 1279

Yea, a.
by MC_8
Sun Apr 27, 2003 4:59 pm
Forum: Archive
Topic: Tcl error [pub:news]: invalid command name ""
Replies: 4
Views: 1558

How does putlog work? Umm, it puts information to the 'o' dcc console. See tcl-commands.doc for a better explination. Basically, if you have bla1 putlog "checkpoint 1" bla2 putlog "checkpoint 2" bla3 putlog "checkpoint 3" And in DCC it shows: checkpoint 1 checkpoint 2 E...
by MC_8
Sun Apr 27, 2003 1:59 pm
Forum: Archive
Topic: Tcl error [pub:news]: invalid command name ""
Replies: 4
Views: 1558

Find out what line is giving the error.
Throw some putlog "Got this far, continuing..."'s at every other line to see where it stops. This will help you narrow it down.
by MC_8
Sun Apr 27, 2003 1:52 pm
Forum: Archive
Topic: Who wrote topic
Replies: 17
Views: 4125

Heh, thanks bud.
by MC_8
Sun Apr 27, 2003 8:09 am
Forum: Archive
Topic: Scriptsearch
Replies: 1
Views: 882

by MC_8
Sun Apr 27, 2003 8:03 am
Forum: Archive
Topic: Question!
Replies: 1
Views: 815

To add a user as an op, do;
.adduser <irc_nick> [handle]
.chattr <handle> +o [channel]


If there host changes, just use .+host.

In the bot, read up on these commands:
.help adduser
.help chattr
.help whois
.help +host
by MC_8
Sun Apr 27, 2003 7:58 am
Forum: Archive
Topic: eggdrop bot joining channel with +k
Replies: 1
Views: 1171

by MC_8
Sun Apr 27, 2003 7:57 am
Forum: Archive
Topic: checkidleops ?
Replies: 1
Views: 798

To disable the script, remove the source line that loads it then restart the bot.

To fix it, contact whomever made the script and have him/her fix the bug.
by MC_8
Sun Apr 27, 2003 7:52 am
Forum: Archive
Topic: Errorhandling using the http package
Replies: 1
Views: 853

I see it handling errors within your code... what's the question again?
As far as catching TCL errors, use catch -> http://tcl.activestate.com/man/tcl8.3/TclCmd/catch.htm.
by MC_8
Sun Apr 27, 2003 7:47 am
Forum: Archive
Topic: Listing directory
Replies: 2
Views: 1049

By the way

Code: Select all

set what [lindex $arg 0]
Should be

Code: Select all

set what [lindex [split $arg] 0]
by MC_8
Sun Apr 27, 2003 7:45 am
Forum: Archive
Topic: Listing directory
Replies: 2
Views: 1049

You can use the 'glob' command to have it list.
See: http://tcl.activestate.com/man/tcl8.3/TclCmd/glob.htm
by MC_8
Sun Apr 27, 2003 7:34 am
Forum: Archive
Topic: Game setups
Replies: 1
Views: 928

bind pub - !add proc_add proc proc_add {nick uhost handle channel arg} { set file datafile if {![file exists $file]} {close [open $file w]} set io [open $file w] puts $io $arg close $io putserv "PRIVMSG $channel :Added; $arg" } bind pub - !remove proc_remove proc proc_remove {nick uhost h...
by MC_8
Sun Apr 27, 2003 7:23 am
Forum: Archive
Topic: qstat scores?
Replies: 2
Views: 1062

Tried contacting the maker of this script/module?