mIRC Home    About    Download    Register    News    Help

Print Thread
#245701 03/05/14 10:16 AM
O
Oxize
Oxize
O
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?

Joined: Dec 2013
Posts: 771
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 771
Code:
on *:text:bleep:#: {
  var %o $me
  nick R2D2
  .notice $nick bleep
  nick %o
}

O
Oxize
Oxize
O
Thanks!

O
Oxize
Oxize
O
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)

Last edited by Oxize; 04/05/14 08:14 PM.
Joined: Mar 2014
Posts: 214
J
Fjord artisan
Offline
Fjord artisan
J
Joined: Mar 2014
Posts: 214
change | .notice | to | msg $chan [message] |

Joined: Dec 2013
Posts: 771
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 771
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.


Link Copied to Clipboard