Module:EcoVersionData: Difference between revisions
From Eco - English Wiki
| [checked revision] | [checked revision] |
20/09/2022: 9.6.3 - Updated EN Data Files (Excluding Command Data, Crafting Recipes, and skills *Working on issue* |
No edit summary |
||
| (21 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
-- Eco Version : 0. | -- Eco Version : 0.13.0.3 | ||
-- | -- EWDE Version : 0.7.1.1 | ||
-- Date of export : 17.05.2026 16:01:55 | |||
return { | return { | ||
game = { | |||
['eco'] = { | ['eco'] = { | ||
[' | ['Version'] = '0.13.0.3 beta release-1015', | ||
[' | ['VersionNumber'] = '0.13.0.3', | ||
[' | ['FullInfo'] = '0.13.0.3 beta release-1015 2026.05.04 16:52', | ||
}, | }, | ||
}, | }, | ||
} | } | ||
Latest revision as of 19:40, 17 May 2026
ATTENTION! Data files are generated using game data and are not intended for manual editing.
Warning about use
[edit source]To prevent multiple call of data array, you must use the function: local EcoVersionData = mw.loadData("Module:EcoVersionData")
Usage
[edit source]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"]