|
Kronas Wanderer
Joined: 28 Dec 2003 Posts: 62 Location: Australia
|
Posted: Tue Jan 06, 2004 10:27 am
greeting triggers |
I have a few greeting triggers ..How do I set up a pause or timer to make the triggers kick in with at least a 4 sec delay?
In others someone has logged in greeted ..how do I make my trigger to pause for 3-4 secs then! reply? |
|
|
|
Drizzt DoUrden Newbie
Joined: 05 Jan 2004 Posts: 3 Location: USA
|
Posted: Tue Jan 06, 2004 1:42 pm |
the trigger should look like this:
#WAIT 4000 (for 4 seconds, measured in milliseconds before continuing)
The rest of your trigger here |
|
|
|
mr_kent Enchanter
Joined: 10 Oct 2000 Posts: 698
|
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Tue Jan 06, 2004 7:02 pm |
To have your trigger pause for 3 to 4 seconds, use a temporary alarm with a random time.
#TR {(%w) has just logged on} {#ALA +%random( 3, 4) {greet %1}}
The first number in %random() is the minimum time (in seconds) the alarm will wait, and the second number is the maximum time it will wait. Change them to provide whatever delay you want. |
|
|
|
|
|