RunSeperate
not ratedThis runs the code c as a seperate thread so wait functions won't pause the thread from which this function is called.
function RunSeperate takes code c returns nothing
local trigger trg = CreateTrigger()
call TriggerAddAction( trg, c )
call TriggerExecute( trg )
call DestroyTrigger( trg )
set trg = null
endfunctionNo comments.