dizietemblesssma Posted September 17, 2021 Share Posted September 17, 2021 Not being a programmer outside my amateur attempts at papyrus I've been wondering, is it a mistake to assume that in a script such: function1() function2()that function2 will not start until function1 finishes? If not would it be sufficient to make function1 return a boolean and rewrite: If function1() function2() EndIf? diziet Link to comment Share on other sites More sharing options...
dylbill Posted September 18, 2021 Share Posted September 18, 2021 The first way you wrote it should be fine. Function1() should finish before function2() starts. If you need both to run at the same time, (threading), you can use Events. Link to comment Share on other sites More sharing options...
dizietemblesssma Posted September 21, 2021 Author Share Posted September 21, 2021 Thanks for that dylbill. It's not threading I'm after, it's the opposite:) diziet Link to comment Share on other sites More sharing options...
Recommended Posts