Here's a tutorial simple and short

put this on your bot (2nd mirc script) or anything like that put this in

HOLD on keyboard ALT press R let go > Click File > New

put this there

on @:TEXT:*:#: {
;basically here says your creating a on text event so if a text is said in a channel we call it on text and also only Operators (ops) can performed this command
if ($1 == !fire) && ($2 ison #) {
;here we basically say if $1 (1st word) equals to !fire then perform next command and also makes sure that $2 (being the 2nd word which is the nickname is on the channel before kicking or banning)
describe $chan has fired $2 from channel
;Same has using /me has fired nick from channel you see i use $2 here the reason is because $2 = the second word so if i use !fire Dave it will fire dave from channel
mode # +b $address($2,3)
;Bans the address of the $2 (2nd word being the nickname)
kick # $2 You have been fired from $chan
;kicks you guessed it $2 (2nd word being the nick) from # (current channel script is performed in)
}
}

else read /help on TEXT
or /help like someone said smile


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }