Andrew's Extra Stuff

By AndrewMiller17 on Sep 26, 2005

Contains Vop List, Aop List, and a BlackList.

on *:load:*
 echo -a Loaded: Andrew's Extra Stuff
}
alias commands {
 echo -a /addaop - Adds the specified nick to your Aop List.
 echo -a /delaop - Deletes the specified nick from your Aop List.
 echo -a /addblack - Adds the specified nick to your BlackList.
 echo -a /delblack - Deletes the specified nick from your BlackList.
 echo -a /addvop - Adds the specified nick to your Vop List.
 echo -a /delvop - Deletes the specified nick from your Vop List.
}
alias addaop {
 .auser aop $2
 .msg $2 I have added you to my Auto Oper List.
 echo -a Added $2 to your Auto Oper List.
 if ($me isop $chan)
 /mode # +o $2
 else { echo -a You must have mod to perform this task.
}
alias delaop {
 .ruser aop $2
 echo -a Deleted $2 from your Auto Oper List.
}
alias addblack {
 .auser black $2
 echo -a Added $2 to your BlackList.
 if ($me isop $chan)
 /mode # -o $2 
 /ban # $address($2,4)
 /kick # $2 BlackListed
 else { echo -a You must have mod to perform this task.
}
alias delblack {
 .ruser black $2
 echo -a Deleted $2 from your BlackList.
}
alias addvop {
 .auser vop $2
 echo -a Added $2 to your Auto Voice List.
 .msg $2 I have added you to my Auto Voice List.
 if ($me isop $chan)
 /mode # +v $2 
 else { echo -a You must have mod to perform this task.
}
alias delvop {
 .ruser vop $2
 echo -a Deleted $2 from your Auto Voice List.
}
on aop:join:#:{
 if ($me isop $chan) {
 /mode # +o $nick
 else { echo -a You must have mod to perform this task.
}
on black:join:#:{
 if ($me isop $chan) {
 /mode # -o $nick
 /ban # $address($2,4)
 /kick # $nick BlackListed
 else { echo -a You must have mod to perform this task.
}
on vop:join:#:{
 if ($me isop $chan) {
 /mode # +v $nick
 else { echo -a You must have mod to perform this task.
}

Comments

Sign in to comment.
AndrewMiller17   -  Sep 27, 2005

Just noticed that I had forgotten to add the on join events. So now this code should work properly.

 Respond  
Urza   -  Sep 27, 2005

you can use /auto and /avoice to use mirc inbuilt aop and avoice system ;)

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.