User contributions for Medici
Jump to navigation
Jump to search
3 May 2025
- 22:5322:53, 3 May 2025 diff hist 0 Module:Infobox Bonuses No edit summary current
- 22:4922:49, 3 May 2025 diff hist −12 Exalted Sword (t1) No edit summary
- 22:4722:47, 3 May 2025 diff hist +90 N Template:Infobox Bonuses Created page with "<includeonly>{{#invoke:Infobox Bonuses|main}}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 22:4722:47, 3 May 2025 diff hist +368 N Exalted Sword (t1) Created page with "==Combat stats== {{Infobox Bonuses |astab = 0 |aslash = 0 |acrush = +135 |amagic = 0 |arange = 0 |dstab = 0 |dslash = 0 |dcrush = 0 |dmagic = 0 |drange = 0 |str = +147 |rstr = 0 |mdmg = 0 |prayer = 0 |slot = 2h |speed = 6 |attackrange = 1 |combatstyle = Blunt |image = 185px |altimage = 185px }}"
- 22:4622:46, 3 May 2025 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:4622:46, 3 May 2025 diff hist +1,967 N Module:Clean image2 Created page with "-- Removes 'File:' prefix, just in case -- Replace {{!}} with | instead of preprocessing -- Turn into a nice wiki file link local p = {} local defaultMaxSize = { h = 300, w = 300 } p.main = function(frame) return p.clean(frame:getParent().args) end p.clean = function(args) local file = args.file if not file or (file and (file:lower() == 'no' or file == '')) then return nil end if not file:find('%[%[File:.-%]%]') then return nil end local fileRaw = file fil..." current
- 22:4622:46, 3 May 2025 diff hist +12,755 N Module:Infobox Bonuses Created page with "-------------------------- -- Module for Template:Infobox Bonuses ------------------------ local p = {} local onmain = require('Module:Mainonly').on_main local infobox = require('Module:Infobox') local signed = require('Module:Format eq stat').signed local clean = require('Module:Clean image2').clean local slots = { head = 'Head slot items', weapon = 'Weapon slot items', body = 'Body slot items', legs = 'Legs slot items', shield = 'Shield slot items', cape =..."
- 22:3322:33, 3 May 2025 diff hist −48 Rise of the Exalted No edit summary
- 22:3222:32, 3 May 2025 diff hist −3 Rise of the Exalted No edit summary
- 22:3122:31, 3 May 2025 diff hist +11 Rise of the Exalted No edit summary
- 22:3022:30, 3 May 2025 diff hist +55 Rise of the Exalted No edit summary
- 22:2822:28, 3 May 2025 diff hist −52 Module:Infobox Item No edit summary current
- 22:2722:27, 3 May 2025 diff hist +4,175 N Module:TimeAgo Created page with "-- <nowiki> -- -- Implements {{time ago}} -- local p = {} local yesno = require( 'Module:Yesno' ) -- assumes 31 days in a month (might need tweaking?) -- assumes 365.25 days in a year to account for leap years local convert = {60, 3600, 86400, 604800, 2678400, 31557600} -- used to convert units to magnitudes local magnitudes = { years = 6, months = 5, weeks = 4, days = 3, hours = 2, minutes = 1, seconds = 0 } -- units to append to time dif..." current
- 22:2722:27, 3 May 2025 diff hist +2,029 N Module:Coins Created page with "-- <pre> -- Implements {{Coins}} -- Original source: http://runescape.wiki/w/Module:Coins?action=history local p = {} local function amount(a) -- convert used globals to locals where possible to improve performance local math = math local string = string local table = table local mw = mw local expr = mw.ext.ParserFunctions.expr local ret = {'<span class="coins inventory-image coins-', true, true, true, '</span>'} -- strip commas from input -- @example..." current
- 22:2622:26, 3 May 2025 diff hist +672 N Module:ChangePerDay Created page with "-- <nowiki> -- -- Implements {{ChangePerDay}} -- local p = {} local round = require( 'Module:Number' )._round function p._change( args ) local lang = mw.language.getContentLanguage() local price = tonumber( args[1] ) or 1 local last = tonumber( args[2] ) or 1 local date = args[3] or 'January 1' local lastDate = args[4] or 'July 1' local diff = lang:formatDate( 'U', date ) - lang:formatDate( 'U', lastDate ) local ret diff = diff / 8640..." current
- 22:2622:26, 3 May 2025 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
- 22:2022:20, 3 May 2025 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:1922:19, 3 May 2025 diff hist +60 N Template:Infobox Item Created page with "{{#invoke:Infobox Item|main}}<noinclude>{{/doc}}</noinclude>" current
- 22:1822:18, 3 May 2025 diff hist +21,980 N Module:Infobox Item/doc Created page with "-------------------------- -- Module for Template:Infobox Item ------------------------ local p = {} local infobox = require('Module:Infobox') local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add local exchange = require('Module:Exchange') local chart = require('Module:ExchangeData')._chart local tb = require('Module:Trailblazer Region') function p.main(frame) local args = frame:getParent().args local ret = infobox.new..." current
- 22:1722:17, 3 May 2025 diff hist +21,980 N Module:Infobox Item Created page with "-------------------------- -- Module for Template:Infobox Item ------------------------ local p = {} local infobox = require('Module:Infobox') local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add local exchange = require('Module:Exchange') local chart = require('Module:ExchangeData')._chart local tb = require('Module:Trailblazer Region') function p.main(frame) local args = frame:getParent().args local ret = infobox.new..."
- 22:0422:04, 3 May 2025 diff hist −9 Rise of the Exalted No edit summary
- 22:0322:03, 3 May 2025 diff hist 0 Rise of the Exalted No edit summary
- 22:0322:03, 3 May 2025 diff hist 0 Rise of the Exalted No edit summary
- 22:0122:01, 3 May 2025 diff hist +2 Rise of the Exalted No edit summary
- 22:0122:01, 3 May 2025 diff hist +17 Rise of the Exalted No edit summary
- 22:0022:00, 3 May 2025 diff hist +2 Rise of the Exalted No edit summary Tag: Visual edit
- 22:0022:00, 3 May 2025 diff hist +44 Rise of the Exalted No edit summary
- 21:5921:59, 3 May 2025 diff hist −1 Rise of the Exalted No edit summary
- 21:5921:59, 3 May 2025 diff hist +3 Rise of the Exalted No edit summary
- 21:5921:59, 3 May 2025 diff hist +11 Rise of the Exalted No edit summary
- 21:5821:58, 3 May 2025 diff hist +32 Rise of the Exalted No edit summary Tag: Visual edit
- 21:5821:58, 3 May 2025 diff hist +48 N File:Level Tasks.png No edit summary current
- 21:5721:57, 3 May 2025 diff hist +384 Rise of the Exalted No edit summary
- 21:3221:32, 3 May 2025 diff hist +44 Rise of the Exalted No edit summary
- 21:2421:24, 3 May 2025 diff hist 0 N File:Starter Staff.png No edit summary current
- 21:2421:24, 3 May 2025 diff hist 0 N File:Starter Bow.png No edit summary current
- 21:2421:24, 3 May 2025 diff hist +2 Rise of the Exalted No edit summary
- 21:2221:22, 3 May 2025 diff hist 0 N File:Starter Sword.png No edit summary current
- 21:2221:22, 3 May 2025 diff hist +44 Rise of the Exalted No edit summary
- 21:2221:22, 3 May 2025 diff hist +12 Rise of the Exalted No edit summary
- 21:1821:18, 3 May 2025 diff hist 0 N File:Exalted Orb (t1).png No edit summary current
- 21:1821:18, 3 May 2025 diff hist +75 Rise of the Exalted No edit summary
- 21:1621:16, 3 May 2025 diff hist 0 N File:Exalted staff icon.png No edit summary current
- 21:1621:16, 3 May 2025 diff hist 0 N File:Exalted bow icon.png No edit summary current
- 21:1221:12, 3 May 2025 diff hist 0 N File:Exalted sword icon.png No edit summary current
- 21:0821:08, 3 May 2025 diff hist −21 Rise of the Exalted No edit summary
- 21:0621:06, 3 May 2025 diff hist −114 Rise of the Exalted No edit summary
- 21:0521:05, 3 May 2025 diff hist −41 Rise of the Exalted No edit summary
- 21:0421:04, 3 May 2025 diff hist −29 Rise of the Exalted No edit summary
- 21:0421:04, 3 May 2025 diff hist −4 Rise of the Exalted No edit summary