mIRC Homepage
Posted By: Oxize change nick script on text - 03/05/14 10:16 AM
Hi searching for an script which allows other users to change my name and i say something back and change my nick back to original

For example

Someone types bleep in the chat

My name changes to RD2D
I say bleep back
My name changes back to Original

Is this possible to make? If so, how?
Posted By: Nillen Re: change nick script on text - 03/05/14 10:20 AM
Code:
on *:text:bleep:#: {
  var %o $me
  nick R2D2
  .notice $nick bleep
  nick %o
}
Posted By: Oxize Re: change nick script on text - 03/05/14 10:22 AM
Thanks!
Posted By: Oxize Re: change nick script on text - 04/05/14 08:02 PM
Tried it out, but ppl who said the bleep text get a notice. Is it possible to let other also see the chat text (normal chat or /me) by not using notice?

And maybe some delay between all 3 actions? (nick change, text, nick original)
Posted By: judge2020 Re: change nick script on text - 04/05/14 08:45 PM
change | .notice | to | msg $chan [message] |
Posted By: Nillen Re: change nick script on text - 04/05/14 08:58 PM
Code:
on *:text:bleep:#: {
  var %o $me
  nick R2D2
  .notice $nick bleep
  nick %o
}
Is your original code. If you want to add timers to the individual tasks, just put
Code:
timer 1 2 nick R2D2
etc. The 1 showing how often you want to repeat this task, and the 2 showing how long it'll take between each repeat.
If you want others to know of the bleep as well you'll want to use
Code:
msg # bleep
instead. You can also use stuff like
Code:
describe # starts bleeping uncontrollably at $nick $+ .
to make a description of the event rather than a message.
© mIRC Discussion Forums