Is this possible? Here is how I compile my script:
Code:// Loading the script.
m_pScript = new Script(g_VM);
m_pScript->CompileFile(szScriptPath);
m_pScript->Run();
From there, I've tried:
Code:return Function(*m_pScript, szFunctionName);
But it fails when I check for function.isNull().
Any ideas?