Quote:

If you have alot of events ie: !bot !help !blah !wobble !etc !etc !etc, i would place them all on the same event using *:TEXT:*:#channel etc


if all these events start with a ! it's probably better to use:

Code:
 
on *:TEXT:!*:#channel :..
 


which only reacts at matches with a !.
Suppose the body of the event looks something like this:

if ($1 == !bot) { .. }
elseif ($1 == !hep) { .. }

it prevents the bot from checking all those if statements in case the match-text doesn't start with a !.