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.
Help for those learning Tcl or writing their own scripts.
sotengboy
Voice
Posts: 14 Joined: Sun Jan 03, 2010 3:43 am
Post
by sotengboy » Sat Apr 03, 2010 11:02 am
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...
TCL_no_TK
Owner
Posts: 509 Joined: Fri Aug 25, 2006 7:05 pm
Location: England, Yorkshire
Post
by TCL_no_TK » Sat Apr 03, 2010 12:29 pm
Check you eggdrop config file to see if
unbind dcc - tcl ...
is there if it
is . Change it to
remenber the
# And in dcc chat/telnet with your eggdrop. Post the output of the dcc/telnet command
.set errorInfo (case is important)
sotengboy
Voice
Posts: 14 Joined: Sun Jan 03, 2010 3:43 am
Post
by sotengboy » Sun Apr 04, 2010 7:54 am
TCL_no_TK wrote: Check you eggdrop config file to see if
unbind dcc - tcl ...
is there if it
is . Change it to
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
sotengboy
Voice
Posts: 14 Joined: Sun Jan 03, 2010 3:43 am
Post
by sotengboy » Sun Apr 04, 2010 7:58 am
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
TCL_no_TK
Owner
Posts: 509 Joined: Fri Aug 25, 2006 7:05 pm
Location: England, Yorkshire
Post
by TCL_no_TK » Sun Apr 04, 2010 12:42 pm
What Script(s) are you using? The first looks like something to do with CTCP Protection and the other looks like an Auth script?
sotengboy
Voice
Posts: 14 Joined: Sun Jan 03, 2010 3:43 am
Post
by sotengboy » Mon Apr 05, 2010 8:50 am
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.
TCL_no_TK
Owner
Posts: 509 Joined: Fri Aug 25, 2006 7:05 pm
Location: England, Yorkshire
Post
by TCL_no_TK » Mon Apr 05, 2010 7:50 pm
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
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"}