3HMonkey
3HMonkey
Some systems people plan to implement/migrate use events which cannot be found in EventSink anymore. For example: - EventSink.OnEnterRegion - EventSink.ResourceHarvestSuccess - EventSink.OnKilledBy - EventSink.CraftSuccess - EventSink.SkillGain - ...
Hello guys, sorry for the question but how can I access the content of the CodeEditor? For example after opening a cs file.
Here for reproduction. Lets say we have a console application with basic implementation of NLua: ```csharp _lua = new Lua(); _lua.LoadCLRPackage(); _lua.DoString($"import('{Assembly.GetExecutingAssembly()}','{typeof(Test).Namespace}')"); ``` (Executed as Lua-Script) Now when calling the...