From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by imported>Nardog at 03:21, 10 April 2021 . The present address (URL) is a permanent link to this version.Revision as of 03:21, 10 April 2021 by imported>Nardog (diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation
Jump to search
local source = mw.title.new('Wikipedia:User scripts/Most imported scripts'):getContent()
local t = {}
for script, total, active in mw.ustring.gmatch(source, '\n%| %[%[([^%]]+)%]%] -\n%| (%d+) -\n%| (%d+)') do
t[script] = { total = tonumber(total), active = tonumber(active) }
end
return t