no no no...
i assume u wanna type sumthin like: !kick <sum-lamer-here> <kick-msg-here>
you should use $2...
as in
on *:text:!kick*:#:{
if ($nick isop #) && ($2 ison #) && ($me isop #) {
kick # $2 $3-
}
}
in the ON TEXT event, $1- holds the whole line
in this case: !kick MyEnemy you're lame!
$1 = !kick
$2 = MyEnemy
$3- = you're lame!
get it now?
and to the other guy: $knick only returns sumthin on the ON KICK event, it return the nick of person who was just kicked.
edit: explained stuff