[V] IdolNinja
Volition Staff
I fixed the missing end and it crashed at the same point.
I'll look into it later after I finish updating GotR.
I fixed the missing end and it crashed at the same point.
I fixed the missing end and it crashed at the same point.
UPDATE:
I had a chance to look into this a little bit more.
After looking into how the SR2/SR3 engine handles the Lua threads in more detail, simply adding a call to thread_new() outside of an existing thread like I proposed will not work. A lot of the backend code that handles our implementation of Lua threads in SR2/SR3 goes to lengths to ensure all threads are safely encapsulated so that we don't end up with rouge threads that got created and never cleaned up. So, any call to thread_new() outside of an existing thread will NOT work.
I'm still investigating a possible work around, but the current approach is a dead end unfortunately.