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.

little help with this tcl pls

Help for those learning Tcl or writing their own scripts.
Post Reply
L
LDSnake
Voice
Posts: 1
Joined: Mon May 17, 2010 6:39 pm

little help with this tcl pls

Post by LDSnake »

ok,i loaded it.eggdrop started, and when i typed the command on irc i got

Tcl error [pub_helper]: invalid command name "putnotc"


just here if find about putnotc

Code: Select all

proc helper_sendit {nick channel dirc txt} {
 if {$dirc == "1"} { puthelp "PRIVMSG $channel :$txt" }
 if {$dirc == "2"} { puthelp "PRIVMSG $nick :$txt" }
 if {$dirc == "3"} { putnotc $nick "$txt" }
 if {$dirc == "4"} { putdcc $nick "$txt" }
tnx
User avatar
tomekk
Master
Posts: 255
Joined: Fri Nov 28, 2008 11:35 am
Location: Oswiecim / Poland
Contact:

Post by tomekk »

add to your config file source for 'alltools.tcl', this is a script which comes with eggdrop package

Code: Select all

source scripts/alltools.tcl
or type some other path, don't know where you have it...
Post Reply