Difference between revisions of "Module:Silent1/sandbox"

From Idlescape Wiki
Jump to navigation Jump to search
m
m
Line 16: Line 16:
  
 
function p._price(frame)
 
function p._price(frame)
local item = frame:getParent().args[1]
+
local args = frame:getParent().args
 +
local item = args[1]
 +
local multi = args[2]
 +
if multi == nil then
 +
multi = 1
 +
end
 
item = string.lower(item)
 
item = string.lower(item)
return p.loadPrice (item, 'price')
+
return p.loadPrice (item, 'price') * multi
 
end
 
end
  
 
return p
 
return p

Revision as of 07:59, 10 February 2022

Documentation for this module may be created at Module:Silent1/sandbox/doc

local p = {}

local data_module_names = {
	price = 'Module:MarketPrices/data'
}
local loaded_data_modules = {}

function p.loadPrice (item, data_type) 
	local module_name = data_module_names[data_type]
	if loaded_data_modules[module_name] == nil then
		loaded_data_modules[module_name] = mw.loadData(module_name)
	end
	
	return loaded_data_modules[module_name][item]
end

function p._price(frame)
	local args = frame:getParent().args
	local item = args[1]
	local multi = args[2]
	if multi == nil then
		multi = 1
	end
	item = string.lower(item)
	return p.loadPrice (item, 'price') * multi
end

return p