v0.4.0
Now with 100% more documentation. https://dail8859.github.io/LuaScript/
Enhancements include:
- More event types
- Console GUI tweaks
- More examples
Note: This makes a slight change to the API that may cause errors with scripts using the previous versions. Adding/removing callbacks has slightly changed. Instead of a each callback having a specific function, a string is passed in for the desired event. For example npp.AddOnChar(function(c) ... end)
would become npp.AddEventHandler("OnChar", function(c) ... end)
. See the documentation.