Simple Auto Identify (NickServ)

By DevAkim on Nov 02, 2010

A simple auto identify script. Uses variables, and includes an /id alias that does /msg nickserv identify %auto.ident.password. Made by me, also my second posted snippet.

on *:load: { 
  set %auto.ident.password $$?="Enter your NickServ password."
}

on *:connect: { msg nickserv identify %auto.ident.password }

alias id {
  msg nickserv identify %auto.ident.password
}

Comments

Sign in to comment.
BigSteve   -  Dec 08, 2010

perform doesnt always work @nufsais

 Respond  
nufsais   -  Dec 07, 2010

Why add a script when mirc already went through the trouble.
The preform box can be use to oper,identify,msg server,invite,start a timer ect.
like i say am i missing something ¿?
{°•°}

 Respond  
nufsais   -  Dec 07, 2010

Why not just use /ns identify password
in the preform box
mirc will tell you if the nick has already been registered by someone else
if nick an password dont match or am i missing something
everytime you sign on it will auto identify you

 Respond  
DevAkim   -  Nov 20, 2010

Thanks :D

 Respond  
BigSteve   -  Nov 20, 2010

its a good code lol praise Cheiron :p

 Respond  
Sorasyn   -  Nov 19, 2010

BigSteve that would also trigger on changing nicks to something that is already registered. Although that is a unique way to go about it.

 Respond  
BigSteve   -  Nov 19, 2010

this ones pretty good aswell praise to Cheiron for it

 on 1:NOTICE:*NickServ IDENTIFY*:?: {  if ($nick == Nickserv) { /nickserv identify passwordgoeshere } 
} 
 Respond  
Sorasyn   -  Nov 02, 2010

Simple, yet effective. Sweet.

 Respond  
SnoooP   -  Nov 02, 2010

Just a suggestion, you should maybe add a variable that changes your nick to the default nick on connect then identifies >.> and if the default nick is in use attempt to ghost it <.<

 Respond  
DevAkim   -  Nov 02, 2010

Thanks Jethro_, I'll try that out. :)

 Respond  
Jethro   -  Nov 02, 2010

Well, easy tweak:

on *:connect:$id
alias id {
  var %id msg nickserv identify $$?="Enter your NickServ password."
  $iif($isid,return %id,%id)
}
 Respond  
DevAkim   -  Nov 02, 2010

Lol. I'm just sayin' that most don't know how to load a script, much less edit one.

 Respond  
GuitarMasterx7   -  Nov 02, 2010

not ALL of us are retards T_T

 Respond  
DevAkim   -  Nov 02, 2010

I code for retards on PeerCommons, so a pop-up box is easier. O_o

 Respond  
GuitarMasterx7   -  Nov 02, 2010

i lied, that was totally aimed at you...
but nice save by me ;D

 Respond  
Jethro   -  Nov 02, 2010

I think you can omit the load event and put your actual password like this:

on *:connect:$id
alias id {
  var %id msg nickserv identify YourPasswordHere
  $iif($isid,return %id,%id)
}

This works two ways.

 Respond  
DevAkim   -  Nov 02, 2010

:P

 Respond  
GuitarMasterx7   -  Nov 02, 2010

i was jus sayin in general, not that you did or didnt D:

 Respond  
DevAkim   -  Nov 02, 2010

Lol, my bot has a separate auto identifier with the password in plain text so no one can do ~say something.

 Respond  
GuitarMasterx7   -  Nov 02, 2010

i hope you dont have some sort of
!say/!speak script on your bot.
lolz

easily obtainable password
!say $chan %auto.ident.password
would cause your bot to say your password in the active channel
but other then tha your good D:

plus mIRC comes in wif a built
in auto ID thing >_>"

 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.