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.
Old posts that have not been replied to for several years.
bobjuh
Master
Posts: 268 Joined: Wed Oct 03, 2001 8:00 pm
Location: Netherlands
Contact:
Post
by bobjuh » Sat Mar 30, 2002 12:35 pm
I get the following error:
Tcl error [got_sign]: called "got_sign" with too many arguments
[own@wormhole scripts]$ cat * |grep got_sign
bind sign - * got_sign
proc got_sign {nick uhost hand reason} {
I looked manuely but i can't find the script with the error. Is there any easy way to do this ?
using eggdrop 1.6.9 and netbots 4.50
Souperman
Halfop
Posts: 69 Joined: Sat Feb 02, 2002 8:00 pm
Location: Cape Town, South Africa
Contact:
Post
by Souperman » Sat Mar 30, 2002 1:40 pm
Check tcl-commands.doc and see what gets passed from a SIGN bind to the proc. You've probably defined too few variables in your proc.
bobjuh
Master
Posts: 268 Joined: Wed Oct 03, 2001 8:00 pm
Location: Netherlands
Contact:
Post
by bobjuh » Sat Mar 30, 2002 2:08 pm
On 2002-03-30 10:40, Souperman wrote:
Check tcl-commands.doc and see what gets passed from a SIGN bind to the proc. You've probably defined too few variables in your proc.
Don't now what script is causing it and i cant really find it.
Petersen
Owner
Posts: 685 Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK
Post
by Petersen » Sat Mar 30, 2002 2:41 pm
to find the script
grep got_sign *
bobjuh
Master
Posts: 268 Joined: Wed Oct 03, 2001 8:00 pm
Location: Netherlands
Contact:
Post
by bobjuh » Sat Mar 30, 2002 2:49 pm
On 2002-03-30 11:41, Petersen wrote:
to find the script
grep got_sign *
oke thank you !