24 Mar, 2010, ersin1998 wrote in the 1st comment:
Votes: 0
say hello
mob will wait 3 seconds and
say wellcome
mob will wait 3 seconds and
say see you..

how can i do this?
I could not find a snippet associated with this.
(i have Ivans OLC 1.81)
24 Mar, 2010, Asylumius wrote in the 2nd comment:
Votes: 0
http://www.mudbytes.net/index.php?a=file...

http://www.mudbytes.net/index.php?a=file...

Those who came up when doing a quick search in the Code Repository.
24 Mar, 2010, Scandum wrote in the 3rd comment:
Votes: 0
There are a couple of options:
say hello
mpsleep 3
say welcome
mpsleep 3
say see you..

Search for mpsleep in the code repository for snippets.

Another way to handle it would be:
>delay_prog 1~
if quest (0,4,$i) > 0
switch quest (0,4,$i)
case 1
say hello
case 2
say welcome
case 3
say see you..
endswitch
mpmadd self quest 0 4 1
mpdelay self 1 3
endif

You'd have to rip out Lola's mobprog engine (and the license) and plug it into your own mud for that to work, there's a short but steep learning curve when it comes to learning how to use variables. It'd be a lot of work though, so you probably want to try the mpsleep route.
24 Mar, 2010, David Haley wrote in the 4th comment:
Votes: 0
There's also 'mpsleep' if you're working with SmaugFUSS. Not sure what base you're using. Extracting this from Lola might be overkill a bit, but obviously that depends on what you have now.
0.0/4