Spore LuaAPI Help

Additional mod/info.lua options

This covers the additional options you can put in your mod's info file:

cpp_mod_requirements

A table containing a list of key value pairs defining the CPP mods and their minimum required versions for this mod to work.

cpp_mod_requirements = { ["SomeCPPModsName"] = 10000, }

The above code would require a CPP mod by the name of SomeCPPModsName that is atleast version 10000 to load this mod

lua_mod_requirements

A table containing a list of key value pairs defining the lua mods and their minimum required versions for this mod to work.

lua_mod_requirements = { ["SomeLuaModsName"] = 10000, }

The above code would require a lua mod by the name of SomeLuaModsName that is atleast version 10000 to load this mod

Last modified: 08 August 2024