Im new at this and the one things that bothers me is that I can't use my own commands :P.

I dont know how to set them up without using a "remote" activator.

For instance, im a halfop on a pretty popular channel and I have commands to kick, and kick ban people.
I made them easy, common commands, !k,!kb
Here they are...
Php Code:
on *:TEXT:!k*:#:{
  if ($nick isop $chan) || ($nick ishop $chan) || ($readini(botstaff.ini, Staff, $address($nick, 3))) {
	/kick $chan $2 $3
  }
}
on *:TEXT:!kb*:#:{
  if ($nick isop $chan) || ($nick ishop $chan) || ($readini(botstaff.ini, Staff, $address($nick, 3))) {
	.Ban $chan $2
	/kick $chan $2 $3
  }
} 


So all I want to know is how to I make it so I can use my own !k,!Kb commands while Im the bot?