Module:EcoVersionData

From Eco - English Wiki
Revision as of 06:23, 27 November 2025 by StalEF (talk | contribs)

Warning about use

To prevent multiple call of data array, you must use the function: local EcoVersionData = mw.loadData("Module:EcoVersionData")

Usage

To use the ecoVersion string in wikitext, see Template:EcoVersion.

For usage through Lua, see the example code below.

-- Load data only once per page. (Do no use require())
local VersionData = mw.loadData("Module:EcoVersionData")

-- Assert that some data was received, otherwise throw an error.
assert(VersionData.game, "Failed to load data from Module:EcoVersionData!")

-- You may then use data from this module in your script.
local EcoVersionData = VersionData.game["eco"]

-- Eco Version : 0.12.0.3
-- EWDE Version : 0.6.5.0
-- Date of export : 26.11.2025 20:54:37

return {
    game = {
        ['eco'] = {
                    ['Version'] = '0.12.0.3 beta release-924',
                    ['VersionNumber'] = '0.12.0.3',
                    ['FullInfo'] = '0.12.0.3 beta release-924 2025.10.28 14:25',
        },
    },
}