Toggle menu
1.3K
1.7K
694
23.9K
Veloren Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Loot tables: Difference between revisions

From Veloren Wiki
Content added Content deleted
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 5: Line 5:


p.getLootTables = function(frame)
p.getLootTables = function(frame)
i = i or 1
i = i
i2 = i2 or 2
i2 = i2
if jsonparse[i][i2] ~= nil then
if jsonparse[i][i2] ~= nil then
return jsonparse[i][i2], unpack(jsonparse[1], i + 1, i2 + 1)
return jsonparse[i][i2], unpack(jsonparse[1], i + 1, i2 + 1)

Revision as of 16:11, 27 November 2021

This module retrieves data from the "Loot tables.json" template according to the {{PAGENAME}} (usually, an NPC name) provided as an argument value.


local jsonraw = '[["Paddy",0.33,"Blue Linen Coat",1],["Paddy",0.33,"Blue Cloth Pads",1],["Paddy",0.33,"Green Worker Shirt",1]]'
local jsonparse = mw.text.jsonDecode( jsonraw )

local p = {}

p.getLootTables = function(frame)
	i = i
	i2 = i2
	if jsonparse[i][i2] ~= nil then
		return jsonparse[i][i2], unpack(jsonparse[1], i + 1, i2 + 1)
	end
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.