mIRC Homepage
Posted By: PHMinistries Change A Nick - 24/12/02 07:43 PM
thats an alias and it wont work
its supposed to check every 60 seconds to see if the nick is Ms_7-11 and if it isnt change it back to Ms_7-11
can anyone figure out what the deal is?

/time-check-nick {
if ($me == Ms_7-11) goto one
else goto two
blushne
timer1 0 60 goto fc3
halt
:two
nick Ms_7-11 | /nickserv identify %password
goto one
halt
:fc3
if ($me != Ms_7-11) goto two
halt
}
Posted By: Merlin Re: Change A Nick - 24/12/02 08:17 PM
Instead using a timer, use /NOTIFY and the ON UNOTIFY event:


Code:
ON 1:START: { 
  notify on
  notify Ms_7-11
}
ON 1:UNOTIFY: { 
  IF ($me != Ms_7-11) { nick Ms_7-11 }
}  
Posted By: Malevolyn Re: Change A Nick - 25/12/02 12:09 AM
Code:
 on *:start:{ .timercheck 0 60 if ($me != Ms_7-11) { nick Ms_7-11 } } 
 
© mIRC Discussion Forums