User contributions for Admin

A user with 148 edits. Account created on 17 February 2024.
Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

26 February 2024

25 February 2024

23 February 2024

  • 01:3601:36, 23 February 2024 diff hist +149 N Template:DropsTableBottomCreated page with "</table>{{#ifeq:{{#var:_refs_used_}}|true|{{#tag:references||group="d"}}|}}{{#vardefine:Version|}}{{#vardefine:_smw|}}<noinclude>{{/doc}}</noinclude>" current
  • 01:3401:34, 23 February 2024 diff hist +871 N Module:YesnoCreated page with "--[[ {{Helper module|name=Yesno |fname1=(arg) |ftype1=Any value |fuse1=Reads arg for yes/no and returns the appropriate boolean or nil |fname2=(arg1,arg2) |ftype2=Any value, Any value |fuse2=Reads arg1 for yes/no and returns the appropriate boolean; returns arg2 if arg1 was not an applicable value }} --]] -- <pre> -- Used to evaluate args to booleans where applicable -- -- Based on <https://en.wikipedia.org/wiki/Module:Yesno> -- see page history there for contributors --..." current
  • 01:3401:34, 23 February 2024 diff hist +14,243 N Module:ExchangeCreated page with "--[[ {{Helper module|name=Exchange |fname1=_price(arg) |ftype1=String |fuse1=Gets the current median price of item named arg |fname2=_value(arg) |ftype2=String |fuse2=Gets the value of item named arg }} --]] -- <nowiki> -- -- Implements various exchange templates -- See Individual method docs for more details -- -- See also: -- - Module:ExchangeData -- - Module:ExchangeDefault -- -- Original version: http://runescape.wiki/w/Module:Exchange local p = {} -- only..." current
  • 01:3301:33, 23 February 2024 diff hist +3,663 N Module:Currency ImageCreated page with "-- Static table to map currency names to filename and available quantities local lookup = { ['abyssal pearls'] = { filename = 'Abyssal_pearls_%d.png', bins = { 1, 2, 3, 4, 5 } }, ['barronite shards'] = { filename = 'Barronite_shards_%d.png', bins = { 1, 2, 3, 4, 5, 10, 25 } }, ['blood money'] = { filename = 'Blood_money_%d.png', bins = { 1, 2, 3, 4, 5, 25, 100, 250, 1000, 10000 } }, ['coins'] = { filename = 'Coins_%d.png', bins = { 1, 2, 3, 4, 5, 25, 100, 250, 1000,..." current
  • 01:3201:32, 23 February 2024 diff hist +120 N Module:Coins imageCreated page with "-- Like Module:Coins, but only for the image return function(q) return require('Module:Currency Image')('coins', q) end" current
  • 01:3101:31, 23 February 2024 diff hist +2,055 N Module:ParamtestCreated page with "--[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {arg1,arg2},...}..." current
  • 01:3001:30, 23 February 2024 diff hist −32 Template:DropsLineNo edit summary current
  • 01:2901:29, 23 February 2024 diff hist +26,154 N Module:DropsLineCreated page with "-- <nowiki> local p = {} local params = require('Module:Paramtest') local lang = mw.language.getContentLanguage() local coins_image = require('Module:Coins image') local curr_image = require('Module:Currency Image') local exchange = require('Module:Exchange') local yesno = require('Module:Yesno') local var = mw.ext.VariablesLua -- precalculated cached data local geprice = exchange._price local f_gealch = exchange._highalch local ptitle = mw.title.getCurrentTitle() l..." current
  • 01:2901:29, 23 February 2024 diff hist −26,154 Main Page/Module:DropsLineBlanked the page current Tag: Blanking
  • 01:2901:29, 23 February 2024 diff hist +26,154 N Main Page/Module:DropsLineCreated page with "-- <nowiki> local p = {} local params = require('Module:Paramtest') local lang = mw.language.getContentLanguage() local coins_image = require('Module:Coins image') local curr_image = require('Module:Currency Image') local exchange = require('Module:Exchange') local yesno = require('Module:Yesno') local var = mw.ext.VariablesLua -- precalculated cached data local geprice = exchange._price local f_gealch = exchange._highalch local ptitle = mw.title.getCurrentTitle() l..."

22 February 2024

  • 22:1622:16, 22 February 2024 diff hist −241 Template:Infobox MonsterNo edit summary current
  • 22:1522:15, 22 February 2024 diff hist −44 Module:Infobox MonsterNo edit summary current
  • 22:1422:14, 22 February 2024 diff hist +298 N Module:Format eq statCreated page with "local p = {} function p.signed(arg) local first_char = string.sub(arg, 1, 1) if first_char == '+' or first_char == '-' then return arg else return '+'..arg end end function p.main(frame) local args = frame:getParent().args local arg = args[1] or '' return p.signed(arg) end return p" current
  • 22:1322:13, 22 February 2024 diff hist +487 N Module:Edit buttonCreated page with "-- {{Helper module|name=Edit button|fname1=(text)|ftype1=string|fuse1=Creates an edit button for the current page that the module is invoked on<br><br><code>text</code> defaults to "edit"}} -- Creates a link that opens the editor screen for whatever page this module is invoked on return function(text, page) local page_title = page or mw.title.getCurrentTitle().fullText local url = tostring(mw.uri.fullUrl(page_title,'action=edit')) return '['..url..' '..(text or 'edi..." current
  • 22:1322:13, 22 February 2024 diff hist +52,368 N Module:InfoboxCreated page with "--[=[ -- For documentation, see Module:Infobox/doc --]=] -- <nowiki> local Infobox = {} Infobox.__index = Infobox Infobox.__tostring = Infobox.tostring -- Edit button for unknown params local editbutton = require('Module:Edit button') local var = mw.ext.VariablesLua local edit = editbutton("'''?''' (edit)") -- Page title local pagename = mw.title.getCurrentTitle().fullText -- map of flags to html tags used by Infobox.addRow() -- let's only define it once, since :..." current
  • 22:1222:12, 22 February 2024 diff hist +1,124 N Module:AddcommasCreated page with "--[[ {{Helper module|name=Addcommas |fname1=_add(arg) |ftype1=Number |fuse1=Formats the number arg with commas |fname2=_strip(arg) |ftype2=Number |fuse2=Removes all commas from arg }} --]] -- <nowiki> -- -- Implements {{Addcommas}} -- local p = {} -- -- main function -- keep public so it can be used in other modules -- function p._add( arg ) local lang = mw.language.getContentLanguage() local z = tostring( arg ) local y = mw.text.split( z, '[%-–]' ) l..." current
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)