Top

Nick Controll


mIRC Code
+ 1 likes
Please Register to submit score.
Bookmark and Share
Average Score  8.7 (of 3 scores)
Date Added  Jul 04, 2007
Last Updated  Aug 23, 2007
Tags  change  controll  guest  nick 

Introduction

This script is to stop your registered nick from ever changing to any nick besides the nicks you list in the IF code block. If you ping out it will auto ghost, release and recover your nick, change you back to your main nick and identify you.

In the "Remotes" section the on Connect event activates a timer. The timer checks your nick every 10 seconds to see if it has changed and fixes it back if needed. Of course you could change the 10 to check more or less often. This is in seconds.

This is a quite simple script that I personally find very usefull. I hate coming back after a netsplit and seeing my nick as Guest1234 because I couldn't identify for whatever reason. Never again!

Grab the Code

;In your "Remotes" section add this code:
;Written by: MyWebs
on *:CONNECT: {
/timerNickCk 0 10 .MyNickCheck
}
alias MyNickCheck {
  if (($me != Nick1) && ($me != Nick2) && ($me != Nick3)) {
    /msg nickserv ghost Nick1 PASSWORD | /msg nickserv release Nick1 PASSWORD | /msg nickserv recover Nick1 PASSWORD | /nick Nick1 | /msg nickserv identify PASSWORD
  }
}
 
You will have to edit the Nick1, Nick2 and Nick3 parts to change them to *your* own nicks, ditto for the PASSWORD parts. I hope others find this as usefull as I do. :-)
MyWebs

Comments

  (6)  RSS
napa182
Comments: 1,454
 
mIRC Snippet:  Nick Controll
Posted on Jul 5, 2007 4:01 pm
Nice script Tony...Adds it to remotes =)
Syele
Comments: 13
 
mIRC Snippet:  Nick Controll
Posted on Jan 30, 2008 3:52 am
oh perfect for me! *adds it too*
Cheiron
Comments: 627
 
mIRC Snippet:  Nick Controll
Posted on Jan 30, 2008 5:21 am
very very nice.. simple code, non complex.. perfect :)
datahawkee
Comments: 6
 
mIRC Snippet:  Nick Controll
Posted on May 9, 2009 5:59 am
great script , used to manually disconnect and connect (have perform all those) but never knew if i was offline or not , thanks

but if I have only one nick , what is the best to do , with nick2 nick3 ?
MyWebs
Comments: 3
 
mIRC Snippet:  Nick Controll
Posted on Oct 25, 2009 5:42 pm
If you only use 1 nick then change the line to this:
if ($me != Nick1) {

Easy fix
MyWebs
Jethro_
Comments: 435
 
mIRC Snippet:  Nick Controll
Posted on Oct 25, 2009 6:38 pm
When dealing with multiple nicknames, you could use:
Code:
if (!$istok(nick1 nick2 nick3,$me,32)) {
This will negate all of them. (with a space between each added)

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom