View Single Post
  #3  
Old 01-31-2008, 03:08 AM
narcberry
Sarnak
 
Join Date: Mar 2005
Location: Idaho, USA
Posts: 94
Default

In the event, I was trying to do a quest::movepc without success.

I now use
Code:
sub delay{
   $delayOver = (time + @_[0]);
   while (time < $delayOver){}
   1;
}
and call with
Code:
delay(seconds);
yeah, that is a while loop. yeah, it's icky. yeah, it's my permanent solution.
__________________
Thanks for answering my questions.
My Website
Reply With Quote