mIRC Home    About    Download    Register    News    Help

Print Thread
#205819 01/11/08 07:23 PM
Joined: Oct 2008
Posts: 167
S
Vogon poet
OP Offline
Vogon poet
S
Joined: Oct 2008
Posts: 167
How can I make a multi-reply to a trigger.
e.g.
Quote:
<User> !sometext
<Bot> some
(wait 5 seconds)
<Bot> text

Last edited by seanturner70; 01/11/08 07:23 PM.
Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
you may add the messages to a text file and /play it with the desired delay (have a look at /help playing files), or you use timers.

example:
Code:
on *:text:!sometext:#somechan: {
  msg $chan this line is messaged instantly...
  .timer 1 5 msg $chan ...and this line 5 seconds later.
}


Link Copied to Clipboard