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()
local p = {}
return nil
end


function p.gathererPages1()
function p.stone()
return p.makeTable('stone')
local queryString = '[[Variant of::Globeplant||Dandelion||Apple||Haleberries||Chestnut||Catkin||Clover||Snake Scale||Orchid||Dock Leaf||Sage||Thistle]]'
return p.main(queryString)
end
end


function p.gathererPages2()
function p.metal()
return p.makeTable('metal')
local queryString = '[[Variant of::Bone Spike||Femur Shard||Goat Horn||Rams Horn]]'
return p.main(queryString)
end
end


function p.gathererPages3()
function p.bone()
return p.makeTable('bone')
local queryString = '[[Variant of::Leek||Bitterfruit||Tangfruit]]'
return p.main(queryString)
end
end
function p.makeTable(args)
local variants = {'basic','moderate','fine','strong','superior','perfect'}
local variants2 = {'Basic','Moderate','Fine','Strong','Superior','Perfect'}
local weaponsStone = {
'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'}
local weaponsMetal = {
'Rapier ',
'Throwing Twinblades',
'Metal Kite Shield',
'Flanged Mace',
'Throwing Rings',
'Shortsword',
'Metal Javelins',
'Metal Heater Shield',
'Longsword',
'Throwing Knives',
'Broadsword',
'Metal Buckler',
'Throwing Axes',
'Battleaxe',
'Metal Bow'}
local weaponsBone = {
'Truncheon',
'Blowpipe',
'Wooden Round Shield',
'Cudgel',
'Javelins',
'Club',
'Light Crossbow',
'Wooden Square Shield',
'Quarterstaff',
'Recurve Bow',
'Spear',
'Wooden Hexagon Shield',
'Longbow',
'Poleaxe',
'Heavy Crossbow'}
if args=='stone' then
weapons = weaponsStone
elseif args=='metal' then
weapons = weaponsMetal
elseif args=='bone' then
weapons = weaponsBone
else
return nil
end
local allWeapons = {}
for j,wep in ipairs(weapons) do
table.insert(allWeapons,{page='[[' .. wep .. ']]'})
end


for i,var in ipairs(variants) do
function p.main(queryString)
for j,wep in ipairs(weapons) do

table.insert(allWeapons,{page='[[' .. wep .. ' (' .. var .. ')]]',wrongPage1='[[' .. wep .. ' (' .. variants2[1] .. ')]]',wrongPage2='[[' .. var .. ' ' .. wep .. ']]'})
local query = {
end
queryString,
end
'? #- = 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
for i,item in ipairs(allWeapons) do
if string.find(page.name,'Mine') then
local query = mw.smw.ask(item.page .. '|?Name #- = data|mainlabel=-')
page.node = page.name
if type(query)=='table' then
page.nodevar = page.variant
item.item = query[1].data
else
page.node = page.name .. ' (skill node)'
page.nodevar = page.variant .. ' (skill node)'
end
end
local result = mw.smw.ask('[['..page.node..']]|?Activity JSON = data')
local query = mw.smw.ask(item.page .. '|?Uses facility #- = 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.facility = query[1].data
page.JSON = table.concat(page.JSON,'<br>')
end
end
end
end
Line 48: Line 110:
:tag('tr')
:tag('tr')
:tag('th')
:tag('th')
:wikitext('Variant')
:wikitext('Name of page')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Node Variant')
:wikitext('Item on page')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Level')
:wikitext('Recipe Facility')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Page')
:wikitext('Incorrect page names')
:done()
:tag('th')
:wikitext('Node')
:done()
:tag('th')
:wikitext('Node JSON')
:done()
:done()
:done()
:done()

for i, item in ipairs(results) do
local row = out:tag('tr')
for i,item in ipairs(allWeapons) do
--level
:tag('td')
local row = out:tag('tr')
:wikitext('[['..item.variant..']]')
:tag('td')
:wikitext(item.page)
:done()
:tag('td')
:wikitext(item.item)
:done()
:tag('td')
:wikitext(item.facility)
:done()
:tag('td')
:wikitext(item.wrongPage1)
:wikitext('<br>')
:wikitext(item.wrongPage2)
:done()
:done()
:done()
:tag('td')
:wikitext('[['..item.nodevar..']]')
:done()
:done()
end
:tag('td')
:wikitext(item.level)
return out
:done()
:tag('td')
:wikitext('[['..item.name..']]')
:done()
:tag('td')
:wikitext('[['..item.node..']]')
:done()
:tag('td')
:wikitext(item.JSON)
:done()
end
return out

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: