Every time i try to start the game with the stone age pack and the spears, as well as a lot of other dependencies, I get this error message:
ModError: Failed to load and run script from C:\local stuff\luanti-5.11.0-win64\mods\stoneage_pack\stoneage\init.lua:
...uff\luanti-5.11.0-win64\bin\..\builtin\game\register.lua:66: Name spears:spear_bone does not follow naming conventions: "stoneage:" or ":" prefix required
....
C:\local stuff\luanti-5.11.0-win64\mods\spears/tools.lua:5: in function 'spears_register_spear'
...uanti-5.11.0-win64\mods\stoneage_pack\stoneage/tools.lua:111: in main chunk
[C]: in function 'dofile'
...luanti-5.11.0-win64\mods\stoneage_pack\stoneage\init.lua:28: in main chunk
Check debug.txt for details.
I am currently using all the required modules, as well as all the optional ones, apart from mcl_mobitems, mcl_campfires, snowdrift, and mobs_animals (can't find mobs_animals on the forum, or the moddb, from the looks of it it's integrated into mobs redo api?) I belive it's having a problem with this piece of code? I think it might be the string at the end of the spears_register_spear calls?
if core.global_exists('spears_register_spear') then
spears_register_spear('bone', 'Bone Spear', 4, 15, ':stoneage:bone')
spears_register_spear('silex', 'Silex Spear', 3, 20, ':stoneage:silex')
end
Every time i try to start the game with the stone age pack and the spears, as well as a lot of other dependencies, I get this error message:
I am currently using all the required modules, as well as all the optional ones, apart from
mcl_mobitems
,mcl_campfires
,snowdrift
, andmobs_animals
(can't find mobs_animals on the forum, or the moddb, from the looks of it it's integrated into mobs redo api?) I belive it's having a problem with this piece of code? I think it might be the string at the end of thespears_register_spear
calls?