mIRC Homepage
Posted By: m4x Auto-Ghost script - 31/12/04 10:33 AM
I want a script that auto-ghosts my nick if it's still there when I reconnect. I tried this, but it didn't work


Code:
 on :NICK:if ($newnick == name) {/msg nickserv ghost $newnick password}  


Thanks in advance for any help
Posted By: HesT Re: Auto-Ghost script - 31/12/04 12:59 PM
on *:NICK:{ if ($newnick == name) { /msg nickserv ghost $newnick password } }

try again laugh
Posted By: landonsandor Re: Auto-Ghost script - 31/12/04 05:42 PM
well, for one thing ON NICK will only work if you're online and see it. however, there's a few ways this can be done:

Code:
on *:notify: {
  if (($nick == name) && ($nick != $me)) { /msg nickserv ghost $nick password }
}


That will work if the nickname is in your notify list (/notify nickname) and your nicklist is turned on (/notify on) when you connect to the network.
Posted By: m4x Re: Auto-Ghost script - 01/01/05 08:47 AM
Thanks
Posted By: landonsandor Re: Auto-Ghost script - 01/01/05 11:57 PM
no problem smile It's what I use (with some other coding here and there). Has worked well for years
© mIRC Discussion Forums