I've been working on a new SP game that I just got the idea for a few days ago. The first level has been coming along really well, if I do say so myself ;). The problem I have been having is with the very first door in the level. I have a script of speech set to run, and the door open shortly after. However, the door keeps opening about a second after the first line plays. Here is the script:
alias level_trigger_1 [
echo "Glad to see you made it!"
sleep 3000 [
echo "All of your systems are functioning normally."
sleep 3000 [
echo "I am going to open the stasis room door."
sleep 3000 [
echo "Make your way down to the training room."
sleep 3000 [
echo "There you will perform combat as well as basic training."
sleep 3000 [
trigger 3 1]]]]]]
Can anyone give me advice as to keep the door from opening early? Ive tried everything, including layering the text, rearranging the text and even changing the sleep amount right before the door trigger to 15000. Im lost. any advice would be GREATLY appreciated! Thanks in advance!