If I have three functions, and if I want to wait 8 in-game hours in the 2nd function, but continue the script to complete the 3rd function without waiting, what would be the best way to do that ?
Spoiler
Event OnInit() function01() function02() function03()EndEventFunction function01() ;first codeEndFunctionFunction function02() ;second code WaitGameTime(8) ;some code casted after the player wait 8 hours EndFunctionFunction function03() ;third codeEndFunction
Thanks!