All public logs
Jump to navigation
Jump to search
Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:11, 11 October 2024 Alex talk contribs created page Module:TimeAgo/doc (Created page with "{{Documentation}} Module used by Module:Exchange.")
- 23:10, 11 October 2024 Alex talk contribs created page 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...")
- 23:09, 11 October 2024 Alex talk contribs created page Module:Number/doc (Created page with "{{documentation}} {{Helper module |name = Number |fname1 = _round(num, dp) |ftype1 = float, int |fuse1 = Rounds <code>num</code> to a precision given by <code>dp</code>, if <code>dp</code> is not specified, it defaults to zero. Rounds half up. |fname2 = _short(str) |ftype2 = String |fuse2 = Convert numbers ending in k, m or b to the actual correct number. Example: 3.5k -> 3500 }}")
- 23:09, 11 October 2024 Alex talk contribs created page Module:Number (Created page with "--[[ {{Helper module |name = Number |fname1 = _round(num, dp) |ftype1 = float, int |fuse1 = Rounds <code>num</code> to a precision given by <code>dp</code>, if <code>dp</code> is not specified, it defaults to zero. |fname2 = _short(str) |ftype2 = String |fuse2 = Convert numbers ending in k, m or b to the actual correct number. Example: 3.5k -> 3500 }} -- ]] -- -- Number manipulation methods -- -- Many methods are already available in the math library, so this will be fai...")
- 23:09, 11 October 2024 Alex talk contribs created page 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...")
- 23:08, 11 October 2024 Alex talk contribs created page Module:Exchange/doc (Created page with "{{documentation}} Powers most exchange pages and exchange-related modules and templates. {{Helper module|name=Exchange |fname1=_price(arg) |ftype1=String |fuse1=Gets the current GE price of item named arg |fname2=_price(arg, multi, format, round, default) |ftype2=String |fuse2=Gets the current GE price of item named arg, multiplied by [multi] (default 1), rounded to [round] decimal places (default unrounded), and if [format] is true, formatted with thousands separators...")
- 23:08, 11 October 2024 Alex talk contribs created page 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...")
- 23:07, 11 October 2024 Eq talk contribs created page File:CombatStyles (whip, deflect).png
- 23:07, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (whip, deflect).png
- 23:07, 11 October 2024 Alex talk contribs created page 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 function p.main(frame) local args = frame:getParent().args local ret = infobox.new(args) ret:defineParams{ { name = 'name', fu...")
- 23:07, 11 October 2024 Eq talk contribs created page File:CombatStyles (whip, lash).png
- 23:07, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (whip, lash).png
- 23:07, 11 October 2024 Eq talk contribs created page File:CombatStyles (whip, flick).png
- 23:07, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (whip, flick).png
- 23:05, 11 October 2024 Eq talk contribs created page File:Abyssal whip detail.png
- 23:05, 11 October 2024 Eq talk contribs uploaded File:Abyssal whip detail.png
- 23:05, 11 October 2024 Alex talk contribs created page Template:Main/doc (Created page with "{{Documentation}} {{Invokes|Main article}} This template can be used to link to another relevant article or set of articles when there is no way to fluently link the article in prose. ;Good example <pre> ==Strategies== {{Main|/Strategies}} Abyssal demons are weak to slash. </pre> ;Bad example Below, it makes more sense to simply link Guthix in the paragraph: <pre> ==Guthix== {{Main|Guthix}} Guthix is a god. </pre> {{TemplateData|<templatedata> { "params": { "...")
- 23:03, 11 October 2024 Alex talk contribs created page Module:Hatnote/doc (Created page with "{{Documentation}} Implements {{T|Hatnote}} for use on top of pages. See template for more info.")
- 23:03, 11 October 2024 Alex talk contribs created page Module:Hatnote (Created page with "-- repurposed from -- -- https://en.wikipedia.org/w/index.php?title=Module:Hatnote&oldid=1063743122 -- -- -- -- Implements {{hatnote}} template -- local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} -- Helper functions...")
- 23:03, 11 October 2024 Alex talk contribs created page Module:Main article (Created page with "-- <pre> local p = {} function p.main(frame) local hat = require('Module:Hatnote') local args = frame:getParent().args local ret = mw.html.create('') -- list of all articles local params = {} -- total arguments counted counted local ttl = 0 for _, v in ipairs(args) do ttl = ttl + 1 table.insert(params,v) end -- main return string ret:wikitext('Main article'..(#params > 1 and 's' or '')..': ') -- helper function local function link(article) article...")
- 23:03, 11 October 2024 Eq talk contribs created page File:Attack icon.png
- 23:03, 11 October 2024 Eq talk contribs uploaded File:Attack icon.png
- 23:02, 11 October 2024 Alex talk contribs created page Template:Main (Created page with "{{#invoke:Main article|main}}<noinclude> {{/doc}}{{PAGENAME}}</noinclude>")
- 23:02, 11 October 2024 Eq talk contribs created page File:Strength icon.png
- 23:02, 11 October 2024 Eq talk contribs uploaded File:Strength icon.png
- 23:01, 11 October 2024 Alex talk contribs created page Template:Standard infobox parameters (Created page with "<noinclude>This template explains the standard parameters for infoboxes based on Module:Infobox. ----</noinclude> ==Standard infobox parameters== <div class="tile mw-collapsible mw-collapsed" style="max-width:none;"> This infobox uses Module:Infobox, which provides a number of standard parameters. <div class="mw-collapsible-content"> ===Versioning=== This infobox supports switching between multiple versions. Each version needs to have a name defined in a paramete...")
- 23:01, 11 October 2024 Eq talk contribs created page File:Defence icon.png
- 23:01, 11 October 2024 Eq talk contribs uploaded File:Defence icon.png
- 23:01, 11 October 2024 Alex talk contribs created page Template:ToC/doc (Created page with "{{documentation}} The '''ToC''' template aligns the "Table of Contents" in a page. The table may now be able to float at the left or right of a page and the text should wrap around it. This template can improve page layouts in certain cases. It can also force-insert a table of contents in pages where there are not enough sections for an automatic insertion of a "Table of Contents". ==Usage== * {{t|ToC|align}} * {{t|ToC|align|clear|width|limit}} ===Optional parameters=...")
- 23:01, 11 October 2024 Alex talk contribs created page Template:ToC (Created page with "<div id="toctemplate" style="clear:{{{clear|left}}}; float:{{#switch:{{{align|{{{1|}}}}}}|right=right|center=center|left=left}}; margin:{{#switch:{{{align|{{{1|}}}}}}|right=0 0 1.5em 1.5em|left=0 1.5em 1.5em 0|#default=0}}; width:{{{width|auto}}};" class="nomobile {{#if:{{{limit|}}}| toclimit-{{#expr:{{{limit}}}+1}}}}">__TOC__</div><noinclude>{{/doc}}</noinclude>")
- 23:00, 11 October 2024 Eq talk contribs created page File:Hitpoints icon.png
- 23:00, 11 October 2024 Eq talk contribs uploaded File:Hitpoints icon.png
- 23:00, 11 October 2024 Alex talk contribs created page Template:Infobox Item (Created page with "{{#invoke:Infobox Item|main}}<noinclude>{{/doc}}</noinclude>")
- 22:59, 11 October 2024 Eq talk contribs created page File:Ranged icon.png
- 22:59, 11 October 2024 Eq talk contribs uploaded File:Ranged icon.png
- 22:59, 11 October 2024 Eq talk contribs deleted File:Ranged icon.png (content was: "", and the only contributor was "Eq" (talk))
- 22:58, 11 October 2024 Alex talk contribs created page Module:Get drop info (Created page with "local p = {} local onmain = require('Module:Mainonly').on_main local yesno = require('Module:Yesno') local purge = require('Module:Purge')._purge local params = require('Module:Paramtest') local images = { agility = '<span class="drops-agility" style="margin-left:0.3em;">link=Agility|frameless|20px</span>', combat = '<span class="drops-combat" style="margin-left:0.3em;">link=Combat level|frameless|20px</span>',...")
- 22:58, 11 October 2024 Eq talk contribs deleted File:Hitpoints icon.png (content was: "", and the only contributor was "Eq" (talk))
- 22:58, 11 October 2024 Alex talk contribs created page Template:Drop sources/doc (Created page with "<includeonly>{{external|rs}}</includeonly>{{Documentation}} Generates a list of sources that drop given item, including monsters and skilling drops. Uses the [https://www.semantic-mediawiki.org/wiki/Help:User_manual Semantic MediaWiki] property Property:Drop JSON. The module called by this template is considered an expensive function, and will increment the count for every page it checks. <pre> {{Drop sources|Item name...")
- 22:58, 11 October 2024 Alex talk contribs created page Template:Drop sources (Created page with "<includeonly>{{#invoke:Get drop info|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 22:57, 11 October 2024 Alex talk contribs created page MediaWiki:Gadget-topIcons.js (Created page with "* * Moves icons from Template:External to the top bar, next to "Article" and "Talk" tabs; * rewritten from scratch for modern MediaWiki: (function ($, mw) { let namespace = mw.config.get('wgNamespaceNumber'); // automatically show externals on Special and MediaWiki namespaces if (namespace === -1 || namespace === 8) { let page = mw.config.get('wgPageName'); addLink('the RuneScape Wiki', 'rsw', page); addLink('the RuneScape Classic Wiki', 'classicrsw...")
- 22:57, 11 October 2024 Alex talk contribs created page MediaWiki:Gadget-topIcons.css (Created page with ".gadget-external-icon { width: 44px; } .gadget-external-icon:hover { filter: brightness(1.1); } .gadget-external-icon a { width: 100%; } #gadget-external-rsw { background: #357ca7 url('filepath://RSW_top_icon.svg') no-repeat center; background-size: 32px; } #gadget-external-classicrsw { background: #60905d url('filepath://RSCW_top_icon.svg') no-repeat center; background-size: 28px; } #gadget-external-meta { background: #e3e3e3 url('filepath://Weird_Gloop_top...")
- 22:55, 11 October 2024 Alex talk contribs created page Template:DPLlua helper/doc (Created page with "{{Documentation}} Helper template for Module:DPLlua to make it possible to inlude all parameters of a template while maintaining good performace. This template is not meant to be used on content pages.")
- 22:54, 11 October 2024 Alex talk contribs created page RuneScape:Lua/Helper modules (Created page with "This is a table of modules and functions that were created specifically for facilitating the creation of other modules. Documentation for modules here is done in the source code with Template:Helper module. <dpl> namespace = Module uses = Template:Helper module titlematch = %/doc nottitlematch = Helper module/doc include = {Helper module} format = <table class="wikitable"><tr><th>Module</th><th>Function</th><th>Type</th><th>Use</th></tr>,,,</table> ordermethod=title...")
- 22:54, 11 October 2024 Eq talk contribs created page File:Hitpoints icon.png
- 22:54, 11 October 2024 Eq talk contribs uploaded File:Hitpoints icon.png
- 22:54, 11 October 2024 Alex talk contribs created page Template:DPLlua helper (Created page with "<includeonly>`#@@#`{{{%ARGS%|}}}`#@@#`</includeonly><noinclude>{{/doc}}</noinclude>")
- 22:50, 11 October 2024 Eq talk contribs created page File:Ranged icon.png
- 22:50, 11 October 2024 Eq talk contribs uploaded File:Ranged icon.png
- 22:48, 11 October 2024 Alex talk contribs created page Module:Demo (Created page with "--<nowiki> local T = require("Module:T")._main local p = {} function p.f(frame) local args = frame:getParent().args local template = args[1] local _args = {} for k, v in pairs(args) do if type(k) == "number" then if k ~= 1 then _args[k - 1] = v end else _args[k] = v end end return '<span class="plainlinks">' .. T(args) .. " produces<br>" .. frame:expandTemplate({ title = template, args = _args }) .. '</span>' end return p --</nowiki>")