Page 1 of 1

An mIRC script

Posted: Thu Dec 26, 2013 7:16 am
by Helljumpr
Hey guys ,
I know some people would think why did I post this here ?
It is because I just wanted to show it to the AoS and mIRC users !
The simple kick ban and stuff script :
The cmds for this script are:
!kick [nick] {reason}
!ban [nick]
!kb [nick]
!moderate
( kb means kick ban )


Code: Select all
on *:TEXT:*:$chan:{

  if ( $nick isop $chan || $me isop $chan ) {

  if ( $1 == !kick ) { /kick $chan $2 $3- | /notice $nick $2 has been kicked! } }

  if ( $1 == !ban ) { //mode $chan +b $adress($2,2) | /notice $nick $2 has been banned }

  if ( $1 == !kb ) { //mode $chan +b $adress($2,2) | /kick $chan $2 $3- | /notice $2 has been kicked and banned }

  if ( $1 == !moderate ) { /mode $channel +m | /msg $chan This channel is moderated . Only voice + levs can talk and higher levs . }


}