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 . }
}