Hello, I am learning to use WE and I have a question.
It is possible to pause the actions of a script for a definite amount of time?
I tryed to use the "sleep" function but it did not work, the script is not execute at all.
This is an example of what I need:
on "LookAt"
{
actor.GoToObject(this);
actor.Direction = DI_DOWN;
actor.Talk("It's wonderfull.");
sleep(10);

??
actor.Talk("I'll take it.");
}
Thanks for help