Top

Auto Op


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  2.0
Scores Submitted  5
Date Added  Mar 22, 2006
Last Updated  Mar 22, 2006
Tags  auto  join  ops  the  users  when 
  Bookmark and Share

Introduction

This script will auto op all users who join your channel.

WARNING: Giving the wrong person op's isn't a very good idea. I only made this script b/c users have been requesting it!

NOTE: IF you wish you can change
mode $chan +o $nick }
to +v and that will auto voice users!

Steps:
1.) Place this in your remote section of your IRC Script Editer
2.) Change
on *:JOIN:#yourchan:{
to your channel you want auto op
3.) The you are done!


Grab the Code

Comments

  (8)  RSS
PureBlood
Comments: 8
 
mIRC Snippet:  Auto Op
Posted on Mar 22, 2006 4:19 pm
Please note that I made this script on request! So pelase don't complain about it being auto op!
xDaeMoN
Comments: 696
 
mIRC Snippet:  Auto Op
Posted on Mar 22, 2006 5:06 pm
You can simplify the code to this:

On @!*:JOIN:#: {
.notice $nick 12Welcome to the $chan $nick $+ !
mode $chan +o $nick
}
xDaeMoN
Comments: 696
 
mIRC Snippet:  Auto Op
Posted on Mar 22, 2006 5:08 pm
Though this type of code could lead to take overs if you auto-op a person with bad intention.
Earl
Comments: 10
 
mIRC Snippet:  Auto Op
Posted on Mar 22, 2006 7:35 pm
xDaeMoN, Most servers have channel services that can help prevent takeovers.
xDaeMoN
Comments: 696
 
mIRC Snippet:  Auto Op
Posted on Mar 22, 2006 7:54 pm
I'm aware, but some don't like Undernet. Especially if the channel is not registered. This is just FYI. =)
PureBlood
Comments: 8
 
mIRC Snippet:  Auto Op
Posted on Mar 25, 2006 10:15 pm
PureBlood


Comments: 6

Posted: Mar 22, 2006 4:19 pm

--------------------------------------------------------------------------------

Please note that I made this script on request! So pelase don't complain about it being auto op!
Jake
Comments: 24
 
mIRC Snippet:  Auto Op
Posted on May 28, 2006 6:39 pm
This script would oper anyone who joins, no?
dave
Comments: 1
 
mIRC Snippet:  Auto Op
Posted on Jun 3, 2006 11:35 am
This script doesn't work.

This:
on *:JOIN:#:{
if ($nick == $me) { halt }
if ($me isop $chan) {
notice $nick 12Welcome to the $chan $nick $o !
mode $chan +o $nick }
}

Does work,

not $+ but $o

Please Register or Login to start posting comments.
Bottom