Editing Module:Sandbox/User:Alsang

Jump to navigation Jump to search
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.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
p = {}


function p.main(args)
local p = {}

function p.minerPages()
local variants = {'Basic','Moderate','Fine','Strong','Superior','Perfect'}
local queryString = '[[Variant of::Flint||Andesite||Granite||Basalt||Deathstone||Iron Ore||Cabranese Ore||Adathril Ore||Flantium Ore||Mine Cart Work]]'
local weapons1 = {'Hammerfist','Throwing Stones','Stone Slab Shield',

'Stone Mace','Stone Discs','War Hammer',
return p.main(queryString)
'Bolas','Stone Chunk Shield','Double Headed Hammer',

'Throwing Clubs','Great Stone Mace',' Polished Stone Shield',
end
'Throwing Hammers','Great Hammer','Sling'}

local weapons2 = {'Hammerfist','Throwing Stones','Stone Slab Shield',
function p.foragerPages()
'Stone Mace','Stone Discs','War Hammer',
'Bolas','Stone Chunk Shield','Double Headed Hammer',
'Throwing Clubs','Great Stone Mace',' Polished Stone Shield',
'Throwing Hammers','Great Hammer','Sling'}
local weapons3 = {'Hammerfist','Throwing Stones','Stone Slab Shield',
'Stone Mace','Stone Discs','War Hammer',
'Bolas','Stone Chunk Shield','Double Headed Hammer',
'Throwing Clubs','Great Stone Mace',' Polished Stone Shield',
'Throwing Hammers','Great Hammer','Sling'}
weapons = weapons1
local queryString = '[[Variant of::Kelp||Wallplant||Periwinkle||Shell||Potato||Pond Weed||Bellplant||Monument Piece||Water Lily||Starfish||Hogberries||Limpet||Nettle||Wrack]]'

return p.main(queryString)

end

function p.gathererPages1()
local allWeapons = {}
local queryString = '[[Variant of::Globeplant||Dandelion||Goat Horn||Apple||Leek||Haleberries||Rams Horn||Bitterfruit||Chestnut||Bone Spike]]'
for i,item in ipairs(variants) do

for j,jtem in ipairs(weapons) do
return p.main(queryString)
table.insert(allWeapons,{pagename='[[' .. jtem .. ' (' .. item .. ')]]',wrongname='[[' .. item .. ' ' .. jtem .. ']]'})

end
end
end


function p.gathererPages2()
for i,item in ipairs(allWeapons) do
local queryString = '[[Variant of::Tangfruit||Catkin||Femur Shard||Clover||Snake Scale||Orchid||Dock Leaf||Sage||Thistle]]'
local query = mw.smw.ask(item.pagename .. '|?Uses facility #- = data|mainlabel=-')

if type(query)=='table' then
return p.main(queryString)
item.facility = query[1].data

end

function p.main(queryString)

local query = {
queryString,
'? #- = name',
'?Profession Level A = level',
'?Variant of = variant',
'sort = Variant of,Profession Level A',
'limit = 500'
}
local results = mw.smw.ask(query)
for _,page in ipairs(results) do
if string.find(page.name,'Mine') then
page.node = page.name
else
page.node = page.name .. ' (skill node)'
end
end
local result = mw.smw.ask('[['..page.node..']]|?Activity JSON = data')
local query = mw.smw.ask(item.pagename .. '|?Activity XP #- = data|mainlabel=-')
page.JSON = (result and result[1] and result[1].data) or ''
if type(page.JSON)=='table' then
if type(query)=='table' then
item.XP = query[1].data
page.JSON = table.concat(page.JSON,'<br>')
end
end
local query = mw.smw.ask(item.pagename .. '|?Activity duration #- = data|mainlabel=-')
if type(query)=='table' then
item.duration = query[1].data
end
local query = mw.smw.ask(item.pagename .. '|?Activity KP #- = data|mainlabel=-')
if type(query)=='table' then
item.KP = query[1].data
end
local query = mw.smw.ask(item.pagename .. '|?Recipe output #- = data|mainlabel=-')
if type(query)=='table' then
item.output = query[1].data
end
local query = mw.smw.ask(item.pagename .. '|?Name #- = data|mainlabel=-')
if type(query)=='table' then
item.name = query[1].data
end
end
end
Line 63: Line 68:
:tag('tr')
:tag('tr')
:tag('th')
:tag('th')
:wikitext('Variant')
:wikitext('Page')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Level')
:wikitext('Item name')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Page')
:wikitext('Recipe Output')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Node')
:wikitext('Facility')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Node JSON')
:wikitext('XP')
:done()
:done()
:done()
:tag('th')
:wikitext('KP')

for i, item in ipairs(results) do
local row = out:tag('tr')
--level
:tag('td')
:wikitext(item.variant)
:done()
:done()
:tag('td')
:tag('th')
:wikitext(item.level)
:wikitext('duration')
:done()
:done()
:tag('td')
:tag('th')
:wikitext('[['..item.name..']]')
:wikitext('Wrong Page (shouldnt exist)')
:done()
:done()
:tag('td')
:done()
:wikitext('[['..item.node..']]')
for i,item in ipairs(allWeapons) do
local row = out:tag('tr')
:tag('td')
:wikitext(item.pagename)
:done()
:tag('td')
:wikitext(item.name)
:done()
:tag('td')
:wikitext(item.output)
:done()
:tag('td')
:wikitext(item.facility)
:done()
:tag('td')
:wikitext(item.XP)
:done()
:tag('td')
:wikitext(item.KP)
:done()
:tag('td')
:wikitext(item.duration)
:done()
:tag('td')
:wikitext(item.wrongname)
:done()
:done()
:done()
:tag('td')
:wikitext(item.JSON)
:done()
:done()
end
end
return out
return out

--for debugging
--return '<pre>'..mw.text.jsonEncode(allWeapons, mw.text.JSON_PRETTY)..'</pre>'
end
end


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

This page is a member of a hidden category: