[TF] pausing between multiple commands
Brought to you by:
kenkeys
|
From: asherbond at asherbond.c. (A. Bond) - 2003-03-31 10:35:26
|
it appears that the delay function is happening concurrently with the rest of the commands. perhaps there is some way to create an "and" condition where inventory happens only if delay returns true. this is what i'm trying to do: /def -mregexp -t"Password correct. Welcome" welcome_me = \ score %; /delay(5) %;\ inventory %; /delay(5) %;\ stat i have included the mylib.tf On Mon, Mar 31, 2003 at 12:39:48PM -0500, Brent Neal wrote: > > Two ways I know to do it - check out /quote, or use a series of > nested /repeat -N 1 statements. > > Galvin's mylib has a /delay function that works pretty well, too. if > you don't mind being tied to that. |