thanks for reading. so, im trying to make a script that will have a vertibird fly in, land on a roof then after a set time i need it to change playgroup to "left" which makes the vertibird idle as if it had landed and powered down. i was able to make this script which as far as i can tell should work, but its not. this is my script using timers so any help would be great scn verttest
short bDoOnce
float timer
Begin OnTriggerEnter player
if timer < 5
if [bDoOnce == 0]
set timer to timer + GetSecondsPassed
vert1.playgroup backward 1
else
vert1.playgroup left 1
set timer to 0
set bDoOnce to 1
Disable
endif
activate
endif
end