mIRC Home    About    Download    Register    News    Help

Print Thread
#245701 03/05/14 10:16 AM
Joined: May 2014
Posts: 4
O
Oxize Offline OP
Self-satisified door
OP Offline
Self-satisified door
O
Joined: May 2014
Posts: 4
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: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
Code:
on *:text:bleep:#: {
  var %o $me
  nick R2D2
  .notice $nick bleep
  nick %o
}


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Joined: May 2014
Posts: 4
O
Oxize Offline OP
Self-satisified door
OP Offline
Self-satisified door
O
Joined: May 2014
Posts: 4
Thanks!

Joined: May 2014
Posts: 4
O
Oxize Offline OP
Self-satisified door
OP Offline
Self-satisified door
O
Joined: May 2014
Posts: 4
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: 215
J
Fjord artisan
Offline
Fjord artisan
J
Joined: Mar 2014
Posts: 215
change | .notice | to | msg $chan [message] |


#imAbeginner
i made a chat bot for mark_paintball! http://twitch.tv/mark_paintball
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
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.


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net

Link Copied to Clipboard