OFPEC Forum

Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting Multiplayer => Topic started by: juxie on 17 Apr 2005, 02:37:27

Title: skipTime crashes MP Mission
Post by: juxie on 17 Apr 2005, 02:37:27
I have a script that skips time every 1 second loop

#loop
~1
skipTime 4
goto "loop"

but somewho it causes my mission to crash

any idea why?
Title: Re:skipTime crashes MP Mission
Post by: Terox on 17 Apr 2005, 13:46:03
Your syntax is correct, however

try reducing your skiptime

skiptime 4

is a massive jump in time every second (4 hours to be exact)


other than that, maybe you have an event which occurs when a certain time of the day has passed and it is this that is crashing your mission
Title: Re:skipTime crashes MP Mission
Post by: juxie on 18 Apr 2005, 07:42:16
sorry I actually skip 4 seconds

means

#loop
~1
skipTime 0.000125
goto "loop