1
Moderator Applications / Re: Moderator Application!
« on: February 16, 2011, 07:22:30 pm »
i dont know you but seems that ur a good scripter
so +1
so +1
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

on *:text:!uptime:*: {
/msg $chan 5I have been Connected to 12 $+ $server for 11,1[ 4,1***15,1 $uptime(server, 1) 4,1*** 11,1]
/msg $chan 12My system have been online 5using mIRC v $+ $version for 11,1[ 4,1***15,1 $uptime(mirc, 1) 4,1*** 11,1]
}
on *:text:!addban *:#: {
if ( $me isop $chan ) {
if ($nick isop $chan)) {
set %ban. [ $+ [ $2 ] ] 1
msg $chan 5 $2 have been added to the Autoban List
mode # +b $address($2,2)
kick # $2 You Have been Banned From This Channel
}
else {
msg $chan You are not allowed to use this Command
}
}
}
on *:text:!delban *:#: {
if ( $me isop $chan ) {
if ($nick isop $chan)) {
unset %ban. [ $+ [ $2 ] ]
msg $chan 5 $2 have been deleted from The Autoban list
mode # -b $address($2,2)
}
else {
msg $chan You are Not allowed to use this command
}
}
}
on *:join:#: {
if ( %ban. [ $+ [ $nick ] ] == 1 ) {
mode # +b $address($nick,2)
kick # $nick You Are Banned From This Channel
}
its beter that you delete if ($nick isop $chan)) and add your own owner system or your nick


on *:text:!mute*:#:{
if ( $me isop $chan ) {
if ( $2 == $null ) { msg $chan 4usage:5!mute <nick>
halt }
if ( %mute [ $+ [ $2 ] ] == 1 ) { msg $chan 12 $+ $2 5is already Muted
halt }
if ( $2 !ison $chan ) { msg $chan 12 $+ $2 5isn't in 12 $+ $chan 5Right Now
Halt }
/mode $chan +b ~q: $+ $address($2,2)
set %mute [ $+ [ $2 ] ] 1
if ($chr(38) isin $nick($chan,$2).pnick) { set %Prot [ $+ [ $2 ] ] 1
}
if ( $2 isop $chan ) { set %op [ $+ [ $2 ] ] 1
}
if ( $2 ishop $chan ) { set %hop [ $+ [ $2 ] ] 1
}
mode $chan -qaohv $2 $2 $2 $2 $2
/msg $chan 12 $+ $2 5have been muted by 12 $+ $nick
}
}
}
}
on *:text:!unmute*:#:{
if ( $me isop $chan ) {
if ( $2 == $null ) { msg $chan 4 usage: 5!unmute <nick>
halt
}
if ( %mute [ $+ [ $2 ] ] == $null ) { msg $chan 12$2 12isn't Muted
halt }
/mode $chan -b ~q: $+ $address($2,2)
unset %mute [ $+ [ $2 ] ]
/msg $chan 12 $+ $2 5have been unmuted by 12 $+ $nick
if ( %prot [ $+ [ $2 ] ] == 1 ) {
mode $chan +voa $2 $2 $2
unset %Prot [ $+ [ $2 ] ]
}
if ( %op [ $+ [ $2 ] ] == 1 ) {
mode $chan +vo $2 $2
unset %op [ $+ [ $2 ] ]
}
if ( %hop [ $+ [ $2 ] ] == 1 ) {
mode $chan +vh $2 $2
unset %hop [ $+ [ $2 ] ]
}
}
}
}
}