Jump to content

Auto Op In Mirc


DJ1989

Recommended Posts

  • Replies 28
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

The problem is I don't know where to put code you gave me, the auto identify script had a dialog box where i could input each user and pass I used, and it would send the info to the server upon logging in, and verify it... I'm just highly confused atm.

Link to comment
Share on other sites

Guest Travis

on *:connect:{

if (%oper) { command to auth as oper }

 

 

 

on one of the networks I am on I use this.

 

/operh <email> <password>

 

Link to comment
Share on other sites

I'll try it out, although I did just find out you can have mIRC do commands on start up... so I just put /oper USER PASS and on startup it will automatically make me oper on the network.

 

Thanks for the help, and sorry for all the trouble.

Link to comment
Share on other sites

this is what i use

 

nice and simple

 

i only use one network so it works fine

 

 

alias tg007 {
  server irc.koach.com
}

on *:CONNECT: {
if ($network == koach.com) {
msg NickServ IDENTIFY password
join #tg007
}
}

 

so all you do is change the msg NickServ line to the one you user to oper

 

 

so when i start mirc i just do /tg007

 

and it auto joins and auto identifys

Link to comment
Share on other sites

I tend to do it on the notice from nickserv instead of the on connect.. most every server i use has the default message from anope

 

 

on ^*:NOTICE:*:*: {
  if (nickname is registered and protected isin $1-) { .msg NickServ IDENTIFY <password> | halt }
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...