Hi folks,
I've spent hours trying to resolve this by myself but am at my wits end. I have a fully updated experimental server with the most recent release of Oxide (build 58).
I'm trying to load a simple plugin but every single time I try I get the following:
Now this looks like it's a straightforward issue with the plugin missing its version, but it's not!Code:1:13 PM [Error] Failed to load plugin kits (Plugin is missing version) 1:13 PM [Debug] at Oxide.Lua.Plugins.LuaPlugin.Load () [0x00000] in <filename unknown>:0 at Oxide.Lua.Plugins.LuaPluginLoader.Load (System.String directory, System.String name) [0x00000] in <filename unknown>:0 at Oxide.Core.OxideMod.LoadPlugin (System.String name) [0x00000] in <filename unknown>:0
I have everything defined perfectly fine:
I haven't a clue what is going wrong, has anybody got any idea or any experience with this error?Code:PLUGIN.Title = "Kits" PLUGIN.Description = "ZC Server Kits" PLUGIN.Author = "ZC" PLUGIN.Version = "1.0"
Cheers,
Marc
Not an Issue Trying to use Legacy plugin on Experimental
Discussion in 'Rust Discussion' started by marc_molyneux, Dec 19, 2014.
-
The Version notation had changed, Just check An existing plugin for the correct syntax To define the Version.
-
Thanks for the reply MughisiLast edited by a moderator: Dec 19, 2014 -
Wulf Community Admin
-
Code:PLUGIN.Title = "Test" PLUGIN.Description = "Test" PLUGIN.Version = "0.1" PLUGIN.Author = "Test"function PLUGIN:Init() print("Test Loaded.") end
-
Wulf Community Admin
-
PLUGIN.Name = "Test"
PLUGIN.Title = "Test"
PLUGIN.Version = V(0, 1, 0)
PLUGIN.Description = "Test"
PLUGIN.Author = "Test" -
Wulf Community Admin
-
Oh my God... I've searched for hours and hours and couldn't find that, you are both gentlemen, thank you!