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.

Tcl error [pub_1]: can't read "iyabib"

Help for those learning Tcl or writing their own scripts.
Post Reply
s
sotengboy
Voice
Posts: 14
Joined: Sun Jan 03, 2010 3:43 am

Tcl error [pub_1]: can't read "iyabib"

Post by sotengboy »

excuse me... sory b4 im NewBie here

please help me... my bot send me on DCC chat

Code: Select all

<santi> [23:08] Tcl error [pub_1]: can't read "iyabib": no such variable
anyone can help me... thanks...
User avatar
TCL_no_TK
Owner
Posts: 509
Joined: Fri Aug 25, 2006 7:05 pm
Location: England, Yorkshire

Post by TCL_no_TK »

Check you eggdrop config file to see if
unbind dcc - tcl ...
is there if it is. Change it to

Code: Select all

#unbind ...
remenber the # And in dcc chat/telnet with your eggdrop. Post the output of the dcc/telnet command .set errorInfo (case is important)
s
sotengboy
Voice
Posts: 14
Joined: Sun Jan 03, 2010 3:43 am

Post by sotengboy »

TCL_no_TK wrote:Check you eggdrop config file to see if
unbind dcc - tcl ...
is there if it is. Change it to

Code: Select all

#unbind ...
remenber the # And in dcc chat/telnet with your eggdrop. Post the output of the dcc/telnet command .set errorInfo (case is important)
thanks sir.. i'll try it
s
sotengboy
Voice
Posts: 14
Joined: Sun Jan 03, 2010 3:43 am

[20:00] Tcl error [ctcpprot:check]: invalid command name

Post by sotengboy »

Code: Select all

[20:00] Tcl error [ctcpprot:check]: invalid command name "count_update"

Code: Select all

[12:02] Tcl error [part_deauth]: wrong # args: should be "part_deauth nick uhost hand chan"

This error occurs on my other bot
Please help. thanks
User avatar
TCL_no_TK
Owner
Posts: 509
Joined: Fri Aug 25, 2006 7:05 pm
Location: England, Yorkshire

Post by TCL_no_TK »

What Script(s) are you using? The first looks like something to do with CTCP Protection and the other looks like an Auth script?
s
sotengboy
Voice
Posts: 14
Joined: Sun Jan 03, 2010 3:43 am

Post by sotengboy »

TCL_no_TK wrote:What Script(s) are you using? The first looks like something to do with CTCP Protection and the other looks like an Auth script?
im using ctcpprotection.tcl first and allprotection.
User avatar
TCL_no_TK
Owner
Posts: 509
Joined: Fri Aug 25, 2006 7:05 pm
Location: England, Yorkshire

Re: [20:00] Tcl error [ctcpprot:check]: invalid command name

Post by TCL_no_TK »

sotengboy wrote:

Code: Select all

[20:00] Tcl error [ctcpprot:check]: invalid command name "count_update"
...
Change

Code: Select all

     newban $banhost "CTCP Protect Script" "$ctcpprot_banreason Received CTCP: $keyword [count_update 1]  $logo" $ctcpprot_bantime
to

Code: Select all

     newban $banhost "CTCP Protect Script" "$ctcpprot_banreason Received CTCP: $keyword $logo" $ctcpprot_bantime
would be the easyest way to fix this i think :P
sotengboy wrote: ...

Code: Select all

[12:02] Tcl error [part_deauth]: wrong # args: should be "part_deauth nick uhost hand chan"
I couldn't find this in the scripts mentioned are you sure its from one of them?
Just a guess to fix this but i'd recommend, once you find the script in question, change

Code: Select all

proc part_deauth {nick uhost hand chan} {
to

Code: Select all

proc part_deauth {nick uhost hand chan {msg ""}} { ;if {$msg == ""} {set msg "$nick"}
Post Reply