ACR_ServerCommunicator.GameWorldManager.OnRunScript C# (CSharp) Method

OnRunScript() private method

This method is called when a run script IPC event is received.
private OnRunScript ( GameServer SourceServer, string ScriptName, string ScriptArgument ) : void
SourceServer GameServer Supplies the sender server, which may be /// may be null if the request was not sent by a server but external /// automation.
ScriptName string Supplies the name of the script.
ScriptArgument string Supplies an optional argument for the /// script main function.
return void
        private void OnRunScript(GameServer SourceServer, string ScriptName, string ScriptArgument)
        {
            EnqueueEvent(new RunScriptEvent(SourceServer, ScriptName, ScriptArgument));
        }