LibraIRC.net Forums
Re: How to make auto identify - Printable Version

+- LibraIRC.net Forums (https://librairc.net/forums)
+-- Forum: Public Forums (https://librairc.net/forums/forum-47.html)
+--- Forum: IRC Discussions (https://librairc.net/forums/forum-57.html)
+---- Forum: mIRC (https://librairc.net/forums/forum-64.html)
+---- Thread: Re: How to make auto identify (/thread-521.html)



Re: How to make auto identify - Scarecrow - 27-06-2012

This is a simple mIRC script replacing MinDFreaks way above.
I'm not a coder, so please don't judge me that hard.  Tongue
I made that little script some time ago and just fixed some things and translated it into English.
However, this addon does not use Perform
and allows you to change your password while being connected.
You can change the password saved in the addon and the password on NickServ. The second one automatically overwrites the addon password.
In Addion to that, a short command, called /info will display short information you saved.
It also disables user mode +c on connect.

A timer will prevent you from being booted for Excess flood.

This addon must be loaded into the Remote section of your mirc, as found in the Scripts Editor.

Code:
on *:load: {   set %pass $?="Please enter your nick password. You will be able to change it later on."   echo AutoIdentidy loaded. } on *:connect: {   .timer  1 0 msg nickserv identify %pass . .timer 1 0 mode $me -c ; .timer 1 1 Add additional command here ; .timer 1 2 Add additional command here ; .timer 1 3 Add additional command here } menu * {   AutoIdentify   .Change Password on NickServ: {     set %pass $?="Enter your new password."     msg nickserv set password %pass   }   .Change Addon Password: {     set %pass $?="Enter your new password."   }   .Not registered yet?   .Register to NickServ: {     set %pass $?="Enter your registration password."     set %RegMail $?="Enter your registration e-Mail. This has to be a valid email."     msg NickServ register %pass %RegMail   } } alias info {   echo    echo Displaying information.   echo -----------------------------------   echo You are  $me   echo Your saved nick password is %pass   echo You are connected to $server   echo  End of information   echo -----------------------------------   echo  }



Re: How to make auto identify - Ense7aB - 10-04-2013

thanks
but not work with mind freak scrip
this one
Code:
http://chanops.org/community/scripts-popups/change-your-color-font-on-mirc/
[size=78%]how can i use two scripts at the same time [/size]


Re: Re: How to make auto identify - Scarecrow - 11-04-2013

Acutally both scripts should work at the same time.
Did you put both into the same Scripts Editor section?

Does the server reply you are already logged in?


Re: Re: How to make auto identify - Omar - 11-04-2013

well its a good one but why a script for it when you can make auto identify from the settings

http://chanops.org/community/mirc-help/how-to-make-auto-identify-143/