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.

chanctrl.tcl still not working :( somebody help me plz?

Old posts that have not been replied to for several years.
Locked
M
Mentolboy

Post by Mentolboy »

i configured the chanctrl, added all the needed parameters into the netset.tcl as described in the readme.
now, i get this error on the partyline of the bot:

TCL error [cc_pubm]: syntax error in expression "regexp -- [03] $text"
when i rehash the bot, i get this error:

Code: Select all

[22:00] *** WARNING: error found when loading netbots/chanctrl.tcl:
[22:00] invalid command name "B"
can somebody help me plz?


<font size=-1>[ This Message was edited by: Mentolboy on 2001-12-23 16:11 ]</font>
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

The invalid command name "B" error can only have been caused when you edited your netset.tcl file. Do a case sensitive search for a capital B

As for the first error, locate the line

Code: Select all

  if {regexp -- [003] $text} {
(slashed removed)
in the chanctrl.tcl file, and change it to the following

Code: Select all

  if {[regexp -- [003] $text]} {
Note, you should re-add the slashes, where they where in the original file. They have been removed due to issues with the forum software, cauing posts to get scrambled up, when it see excaped char sequenses.
M
Mentolboy

Post by Mentolboy »

i changed the line, but i still get this error:

[23:39] TCL error [cc_pubm]: syntax error in expression "regexp -- [03] $text"

i did put the slashes in the right place
Locked