mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Oct 2008
Posts: 167
S
Vogon poet
OP Offline
Vogon poet
S
Joined: Oct 2008
Posts: 167
Is there a way to repeat what someone says, e.g.

If someone says: "!say some sentence I want you you say"
Then the bot (my bot) would then say: "<Bot> some sentence I want you to say"


Thank you.
Sean

Joined: Oct 2007
Posts: 214
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Oct 2007
Posts: 214
Hello,

Use this code here:

Code:
on *:TEXT:*:#: {
if ($1 == !say) { msg # $2- }
}
 


Cheers,

Jay

Joined: Oct 2008
Posts: 167
S
Vogon poet
OP Offline
Vogon poet
S
Joined: Oct 2008
Posts: 167
Thanks!

Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Code:
on *:text:!say ?*:#: msg # $2-


Link Copied to Clipboard