mIRC Home    About    Download    Register    News    Help

Print Thread
#87013 15/06/04 11:24 PM
Joined: Mar 2003
Posts: 9
M
MaxeY Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
M
Joined: Mar 2003
Posts: 9
Hi! I've ran into some troubles with some guy who stole my nick. It seems it's a bot, so no way I can get in contact with the owner. I made script that would take his nick when he logged off, using notify. But for some reason it didn't work. Any help or new ideas would be greatly appreciated smile

Here's the code that didn't work:
raw 303:*:{
if (NickHere isin $1-) { halt }
else { .nick NickHere }
halt
}


---------------
As Far As I Know, there is one positive thing about life......

It ends... laugh
#87014 16/06/04 12:45 AM
Joined: Dec 2002
Posts: 1,237
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
If you have this person/bot in your notify list you can use this code and it should do the trick.

Code:
On *:Unotify: {
  if ($nick == NickHere) {
    nick NickHere
  }
}


Hope it helps! By the way if the network has some sort of nickname registration service such as NickServ, maybe you should look into registering your nick. Again hope it helps.

Last edited by The_Game; 16/06/04 12:49 AM.
#87015 16/06/04 06:07 AM
Joined: Mar 2003
Posts: 9
M
MaxeY Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
M
Joined: Mar 2003
Posts: 9
I'll try that then! smile Didn't think of that... *bang head in desk* :P
I'm on EFnet, so no NickServ there unfortunately... :\
But thanks a bunch! smile


---------------
As Far As I Know, there is one positive thing about life......

It ends... laugh
#87016 16/06/04 07:15 PM
Joined: Dec 2002
Posts: 1,237
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
As I said it should get what you need done. Glad I could be of some help! smile


Link Copied to Clipboard