Module:EcoVersionData

From Eco - English Wiki
Revision as of 17:20, 26 April 2026 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.13.0.2
-- EWDE Version : 0.7.1.0
-- Date of export : 25.04.2026 17:14:53

return {
    game = {
        ['eco'] = {
                    ['Version'] = '0.13.0.2 beta release-1006',
                    ['VersionNumber'] = '0.13.0.2',
                    ['FullInfo'] = '0.13.0.2 beta release-1006 2026.04.15 19:38',
        },
    },
}