User contributions for Admin
Jump to navigation
Jump to search
23 February 2024
- 01:3601:36, 23 February 2024 diff hist +149 N Template:DropsTableBottom Created 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:Yesno Created 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:Exchange Created 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 Image Created 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 image Created 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:Paramtest Created 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:DropsLine No edit summary current
- 01:2901:29, 23 February 2024 diff hist +26,154 N Module:DropsLine Created 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:DropsLine Blanked the page current Tag: Blanking
- 01:2901:29, 23 February 2024 diff hist +26,154 N Main Page/Module:DropsLine Created 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 Monster No edit summary current
- 22:1522:15, 22 February 2024 diff hist −44 Module:Infobox Monster No edit summary current
- 22:1422:14, 22 February 2024 diff hist +298 N Module:Format eq stat Created 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 button Created 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:Infobox Created 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:Addcommas Created 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
- 22:1122:11, 22 February 2024 diff hist +72 N Template:Mainonly Created page with "{{#ifeq:{{NAMESPACE}}|{{ns:0}}|{{{1|}}}}}<noinclude>{{/doc}}</noinclude>" current
- 22:1122:11, 22 February 2024 diff hist +869 N Module:Mainonly Created page with "--[[ {{Helper module|name=Mainonly |fname1=_main(arg) |ftype1=Any value |fuse1=If the module is invoked in the content namespace, it will return arg, otherwise, it will return an empty string |fname2=on_main() |ftype2=N/A |fuse2=Returns true if invoked in the content namespace, otherwise false }} --]] -- -- Module to return text only when invoked in the content namespace -- local p = {} function p.main(frame) local ret = frame:getParent().args[1] or '' return p._main..." current
- 22:0422:04, 22 February 2024 diff hist +26,207 N Module:Infobox Monster Created page with "-------------------------- -- Module for Template:Infobox Monster ------------------------ local p = {} local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add local infobox = require('Module:Infobox') local signed = require('Module:Format eq stat').signed local slayer_masters = { 'turael', 'spria', 'krystilia', 'mazchna', 'vannaka', 'chaeldar', 'konar', 'nieve', 'steve', 'duradel' } local attributes = { demon = '[[Demon (..."
- 21:4221:42, 22 February 2024 diff hist +2 Fluffy No edit summary
- 21:3221:32, 22 February 2024 diff hist −32 Skills No edit summary
- 21:3121:31, 22 February 2024 diff hist +19 Skills No edit summary
- 21:2821:28, 22 February 2024 diff hist +15 Skills No edit summary
- 21:2521:25, 22 February 2024 diff hist −16 Skills No edit summary
21 February 2024
- 21:5821:58, 21 February 2024 diff hist +267 m Bestiary Reverted edit by Admin (talk) to last revision by Plz2 Tag: Rollback
- 21:0321:03, 21 February 2024 diff hist −267 Bestiary →Bestiary per location Tags: Blanking Manual revert Reverted
- 21:0321:03, 21 February 2024 diff hist −1,928 Skills Blanked the page Tag: Blanking
- 20:5320:53, 21 February 2024 diff hist −979 Main Page No edit summary
- 20:5320:53, 21 February 2024 diff hist 0 Main Page No edit summary
18 February 2024
- 08:5308:53, 18 February 2024 diff hist −859 Main Page No edit summary
- 06:0506:05, 18 February 2024 diff hist −961 Main Page No edit summary
- 02:2302:23, 18 February 2024 diff hist +9 Main Page No edit summary
- 02:2202:22, 18 February 2024 diff hist +985 Main Page No edit summary
- 01:4801:48, 18 February 2024 diff hist +3 Main Page No edit summary
- 01:4801:48, 18 February 2024 diff hist −710 Main Page No edit summary
- 01:4701:47, 18 February 2024 diff hist −31 Main Page No edit summary
- 01:4701:47, 18 February 2024 diff hist +905 Main Page No edit summary
17 February 2024
- 04:0904:09, 17 February 2024 diff hist +138,151 N MediaWiki:Common.css Created page with "→<pre>: :root { --body-main: #e2dbc8; --body-light: #d8ccb4; --body-mid: #d0bd97; --body-dark: #b8a282; --body-border: #94866d; --body-background-color: #c0a886; --button-background: #605443; --button-color: #fff; --button-border: #3c352a; --button-dark: #18140c; --button-light: #3a301d; --sidebar: #cfc08d; --background-text-color: #444; --background-link-color: #52351e; --search-box: #efeee6; --link-col..."
- 04:0904:09, 17 February 2024 diff hist −138,151 User:Admin/common.css Blanked the page current Tag: Blanking
- 04:0904:09, 17 February 2024 diff hist −138,151 User:Admin/vector.css Blanked the page current Tags: Blanking Manual revert
- 04:0704:07, 17 February 2024 diff hist +119,775 User:Admin/common.css No edit summary
- 04:0604:06, 17 February 2024 diff hist +119,775 User:Admin/vector.css No edit summary Tag: Reverted
- 04:0404:04, 17 February 2024 diff hist +18,376 User:Admin/vector.css No edit summary Tags: Manual revert Reverted
- 04:0304:03, 17 February 2024 diff hist −44 User:Admin/vector.css Blanked the page Tags: Blanking Reverted
- 04:0204:02, 17 February 2024 diff hist −18,332 User:Admin/vector.css Replaced content with " #bodyContent { background-color: yellow; }" Tags: Replaced Reverted
- 03:5803:58, 17 February 2024 diff hist +18,376 N User:Admin/common.css Created page with "/* ------------------------------------------------------------------------------ This is the root LESS file that is parsed to produce MediaWiki:Vector-darkmode.css. Previously compiled via subpages at Special:PrefixIndex/MediaWiki:Vector-darkmode.less/, now adjusted via CSS Variables. To update MediaWiki:Vector-darkmode.css from here, users with the appropriate permissions can click the "Update CSS" button found to the left of the edit butto..."
- 03:5703:57, 17 February 2024 diff hist −12,263 User:Admin/vector.css No edit summary
- 03:5503:55, 17 February 2024 diff hist +30,639 N User:Admin/vector.css Created page with "→<pre>: :root { --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); } html { -webkit-text-size-adjust: 100%; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', s..."
- 03:5403:54, 17 February 2024 diff hist +30,639 N User:Admin/vector-2022.css Created page with "→<pre>: :root { --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); } html { -webkit-text-size-adjust: 100%; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', s..." current
- 03:5203:52, 17 February 2024 diff hist +30,639 N MediaWiki:Vector.css Created page with "→<pre>: :root { --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); } html { -webkit-text-size-adjust: 100%; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', s..." current