you can try with:
Code:
on *:text:*:#: {
 echo -at $nick $1 $2
}

$nick return EggBotV1
$1 return !throw
$2 return Thrull

If you want to see the whole line, then use $1-

Replace the * with what you want it to react on.
on *:text:!throw *:#:

or you can make it so it triggers on more then one.
Code:
on *:text:*:#: {
 if ($1 == !throw) { echo -at throw }
 elseif ($1 == !meep) { echo -at meep }
 elseif ($1 == !moo) { echo -at moo }
}