Home
Random
Log in
Settings
About Brighter Shores Wiki
Disclaimers
Search
Editing
Module:Sandbox/User:Alsang/PriceChecker
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local p = {} -- non dynamic module, no inputs function p.main() -- returns only directly needed parameter needed for the row, -- other parameters are determined by subqueries of chained pages local query = { '[[-Sold item.Shop sell price::+]]', '?=Name', '?-Sold item.Shop sell price=ShopValue', '?Value=InfoboxValue', 'limit = 500' } local results = mw.smw.ask(query) local out = {'List of items:'} for _,item in ipairs(results) do local i = tonumber(item.InfoboxValue) local s = item.ShopValue local add = true if type(s)=='string' then if i==tonumber(s) or not(tonumber(s)) then add = false end elseif type(s)=='table' then for _,shop in ipairs(s) do if i==tonumber(shop) or not(tonumber(shop)) then add = false end end end if add then table.insert(out,item.Name) end end table.insert(out,'End of List') return table.concat(out, '<br>') end return p
Summary:
Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see
Brighter Shores:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Preview page with this template
Templates used on this page:
Template:DependencyList
(
edit
)
Template:Documentation
(
edit
)
Template:Extension DPL
(
edit
)
Template:No documentation
(
edit
)
Template:PageType
(
edit
)
Template:Sandbox/User:Alsang/PriceChecker
(
edit
)
Template:Sandbox/User:Alsang/PriceChecker/doc
(
edit
)
Module:Array
(
edit
)
Module:DPLlua
(
edit
)
Module:DependencyList
(
edit
)
Module:Documentation
(
edit
)
Module:Paramtest
(
edit
)
Module:Sandbox/User:Alsang/PriceChecker
(
edit
)
Module:Sandbox/User:Alsang/PriceChecker/doc
(
edit
)
Module:Tooltip
(
edit
)
Module:Yesno
(
view source
) (semi-protected)
This page is a member of a hidden category:
Category:Pages using DynamicPageList3 parser function