I'm very new to all this TCL & eggdrop stuff, but I wanna make my own script which basically (for now) just notice's me when I join the channel. I know that sounds stupid, but I wanna make sure I can at least get it to do that before I unleash it on the chatters, hehe.
This is what I have ..
bind join - * pgreet
proc pgreet { nick } {
if {$nick == "alex"} {
putnotc $nick "Hi $nick"
}
}
I've also tried changing all the "nick"'s for "hand".
I get this message ..
[14:35] Tcl error [pgreet]: called "pgreet" with too many arguments
Please help, it might just be the syntax is wrong, but I dunno where.