mIRC Home    About    Download    Register    News    Help

Print Thread
#239316 14/10/12 12:07 AM
Joined: Oct 2012
Posts: 1
J
jri Offline OP
Mostly harmless
OP Offline
Mostly harmless
J
Joined: Oct 2012
Posts: 1
I want to make a script where when if a certain person posts in a channel then i automatically type a certain phrase.

For example, whenever user "bob" types something into #channel123 then "jri" (me) automatically types "hello".

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Type /help on text in mIRC. There are a variety of examples right there to do what you want. Just change the text to whatever you want.


Invision Support
#Invision on irc.irchighway.net
Joined: Nov 2012
Posts: 19
L
Pikka bird
Offline
Pikka bird
L
Joined: Nov 2012
Posts: 19
You can use something like this;

Code:
on *:TEXT:*Hello*:#channel123: {
  /msg $chan Hello, $nick
}

So whenever someone write hello you response like,

Hello, and the nickname of the typer of Hello.
Whenever you respond on nick then you will response Hello whenever Bob types something.

Last edited by LisaMIRC; 21/11/12 01:15 AM.

Link Copied to Clipboard