ACR_Quest.Spawn.SetLocalArrayObject C# (CSharp) Method

SetLocalArrayObject() public static method

public static SetLocalArrayObject ( uint oObject, string sVarName, int nIndex, uint oValue, CLRScriptBase s ) : void
oObject uint
sVarName string
nIndex int
oValue uint
s CLRScriptFramework.CLRScriptBase
return void
        public static void SetLocalArrayObject(uint oObject, string sVarName, int nIndex, uint oValue, CLRScriptBase s)
        {
            s.SetLocalObject(oObject, sVarName + s.IntToString(nIndex), oValue);
        }
    }