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&...
- 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
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
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.
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...