mIRC Home    About    Download    Register    News    Help

Print Thread
#132977 16/10/05 06:11 AM
Joined: Oct 2005
Posts: 4
S
SMC Offline OP
Self-satisified door
OP Offline
Self-satisified door
S
Joined: Oct 2005
Posts: 4
hey,
i'm on a network with a major band chatroom on it. posers use alike names to the band members names. i and another staff member on the network have registered many of the commonly used names, however it is hard work to constantly monitor buddylists and ghost them off. is it possible to have a script for auto-ghosting?
thanks :P
-SMC.

#132978 16/10/05 06:15 AM
Joined: Jun 2005
Posts: 11
H
Pikka bird
Offline
Pikka bird
H
Joined: Jun 2005
Posts: 11
You can add them to the NOTIFY list, and when ON NOTIFY triggers, check the address to make sure its not someone who is allowed to use the nick, then ghost it.


- hantu
#132979 16/10/05 07:35 AM
Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
most networks allow u to set protection on registered nicks, so it well rename the user who uses it without identifiying.

/ns help

or

/ns help set kill

* this might not exist on your network, get back to us if it isnt, its easy to add a script to do a ghost. The /NS service would be better, as then u dont even need to be online for it to take effect.

#132980 16/10/05 10:32 AM
Joined: Jun 2005
Posts: 11
H
Pikka bird
Offline
Pikka bird
H
Joined: Jun 2005
Posts: 11
Code:
/nickserv set enforce on
/nickserv ghost nick <password>

for dalnet wink


- hantu
#132981 16/10/05 02:20 PM
Joined: Feb 2005
Posts: 681
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Feb 2005
Posts: 681
Like said before, you could/should set the kill option with
NickServ, but if you wanted to do it with a script you could
add all the nicks to your notify and use the following..

Code:
on *:NOTIFY: {
  var %nicks = [color:red]nick1 nick2 nick3 nick4 nick5[/color]
  if (($network == [color:blue]network[/color]) && ($istok(%nicks,$nick,32))) !.msg nickserv ghost $nick [color:green]password[/color]
}

replace these with the nicks to kill. also, everytime you add
a nick to your notify list to be killed, add it here as well.
Oh, and you're not limited to 5 nicks either.


replace this with your network name.

replace this with your nickserv password.

..but I would use the nickserv kill option.

Last edited by mIRCManiac; 16/10/05 02:52 PM.

Link Copied to Clipboard