Check an LUA array from C#
Discussion in 'Rust Development' started by isuelt, Feb 20, 2016.
-
I would create a function in the LUA plugin that returns the array and then call the LUA plugin from your C# plugin.
Code:var PluginName = plugins.Find("PluginName"); var output = PluginName?.Call("FunctionName","OptionalParameter1", "OptionalParameter2");
