Search found 85 matches

by krimson
Fri Oct 27, 2006 4:03 pm
Forum: Script Requests
Topic: TV script
Replies: 1
Views: 2022

have you tried searching the Tcl Archive?
by krimson
Mon Oct 23, 2006 12:19 pm
Forum: Shell & Bouncer Help
Topic: SQL options?
Replies: 1
Views: 8181

this is a questions you should ask your shell provider.
by krimson
Thu Oct 19, 2006 9:25 am
Forum: Scripting Help
Topic: Timebomb
Replies: 16
Views: 12027

Re: Here is the changed script as promissed

a little offtopic note for groofy: you should always post any code you paste using

Code: Select all

 tags
by krimson
Tue Oct 17, 2006 10:22 am
Forum: Eggdrop Help
Topic: joining a +H chan [SOLVED]
Replies: 9
Views: 11127

you should specify what does a 'mangledhost' mean. does it require some form of authentication with services and / or specific user modes?
by krimson
Sat Oct 07, 2006 3:35 pm
Forum: Scripting Help
Topic: Trivia/Quiz bot
Replies: 1
Views: 2907

search the tcl archive - trivia section and use the scripts provided as an inspiration source
by krimson
Mon Oct 02, 2006 1:13 pm
Forum: Scripting Help
Topic: Stuck with Remove Text from file
Replies: 6
Views: 4551

one thing i notice is that you're not closing 'combine' at all. this: set combine [open $file "w"] puts combine [join $del "\n"] close $file should be this: set combine [open $file "w"] puts combine [join $del "\n"] close $combine a full ".tcl $errorInfo&...
by krimson
Mon Oct 02, 2006 9:28 am
Forum: Scripting Help
Topic: Stuck with Remove Text from file
Replies: 6
Views: 4551

- try reading the manual on lreplace.
- what do you use $deletenick and $deletext for?
- it's not such a good practice to set the file path each time you're calling the proc. this should be done somewhere outside, in a config only area

ps: please use

Code: Select all

 tags when posting any type of code
by krimson
Thu Sep 28, 2006 3:41 am
Forum: Script Requests
Topic: Enforce Ban
Replies: 32
Views: 19767

you have an extra closing bracket at the end of the script.. remove that and try again
by krimson
Sun Sep 24, 2006 5:07 am
Forum: Eggdrop Help
Topic: conf file: How to escape the slash in #john/doe?
Replies: 2
Views: 2641

escape it with another slash, not a backslash :)

Code: Select all

channel add #john//doe { ...
by krimson
Sun Sep 17, 2006 5:27 am
Forum: Script Support & Releases
Topic: Trivia_2000
Replies: 9
Views: 7496

you could try using one of the databases of these scripts: http://www.egghelp.org/tclhtml/3478-4-0-0-1-trivia.htm. if you can't find anything that matches your script's specific q&a format, you can always edit a database and make it compatible
by krimson
Sun Sep 17, 2006 2:20 am
Forum: Script Support & Releases
Topic: Trivia_2000
Replies: 9
Views: 7496

chubbychub wrote:this is the format for trivia_2000 --> question:answer

example
virgin:What is the zodiacal symbol for Virgo ?
is is question:answer or answer:question?
by krimson
Thu Sep 14, 2006 5:43 am
Forum: Script Requests
Topic: script change msg to pub
Replies: 4
Views: 3056

i edited my previous post and changed the code
by krimson
Thu Sep 14, 2006 1:21 am
Forum: Script Requests
Topic: script change msg to pub
Replies: 4
Views: 3056

bind pub n|n "!pub" add_1 proc add_1 {nick uhost hand chan arg} { global chan_1 chan_3 db if {$chan != "#nemesis-staff"} {return 0} set arg [split $arg] set user [lindex $args 0] set pass [lindex $args 1] if {$user = "" || $pass == ""} { puthelp "NOTICE ...
by krimson
Wed Sep 13, 2006 1:25 pm
Forum: Eggdrop Help
Topic: eggdrop looking for modules in the wrong place
Replies: 5
Views: 3964

it was setup correctly

Code: Select all

set mod-path "/usr/lib/eggdrop/"

some other problems appeared and i started to get some bogus errors, so i guess that the rpm wasn't working right. i removed it and compiled eggdrop from source and now everything works perfect.
by krimson
Wed Sep 13, 2006 12:00 pm
Forum: Eggdrop Help
Topic: eggdrop looking for modules in the wrong place
Replies: 5
Views: 3964

eggdrop looking for modules in the wrong place

i'm sorry if this has already been discussed around the forums, but i couldn't find anything related to my problem. i'm using fedora core 5 as home OS, and running eggdrop 1.6.18 (rpm build) for tcl script tests. i used a standard eggdrop config (only modified what i needed), and it worked. now i've...