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:41, 11 October 2024 Alex talk contribs created page Module:Skill calc/Helpers/doc (Created page with "{{Documentation}}")
- 23:41, 11 October 2024 Alex talk contribs created page Module:Skill calc/Helpers (Created page with "local p = {} local yesNo = require('Module:Yesno') local xp = require('Module:Experience').xp_at_level local level = require('Module:Experience').level_at_xp_unr local commas = require('Module:Addcommas')._add function p.filterData(data, method, dataCriteria, goalLevel) local methodData = {} local addRow = false for i, v in ipairs(data) do if dataCriteria ~= 'Hide' or tonumber(v.level) <= tonumber(goalLevel) then if method == 'All' then table.insert(method...")
- 23:37, 11 October 2024 Alex talk contribs created page Module:Coins/doc (Created page with "{{Documentation}} {{Helper module |name = Coins |fname1 = _amount(coins) |ftype1 = Number |fuse1 = Returns a formatted string with a coins icon and the amount of coins. See Template:Coins for examples. }}")
- 23:37, 11 October 2024 Alex talk contribs created page 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 coins-', true, true, true, '</span>'} -- strip commas from input -- @example '123,456,789'...")
- 23:36, 11 October 2024 Eq talk contribs created page File:CombatStyles (bow, longrange).png
- 23:36, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (bow, longrange).png
- 23:36, 11 October 2024 Alex talk contribs created page Module:Addcommas/doc (Created page with "{{documentation}} {{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 }}")
- 23:36, 11 October 2024 Alex talk contribs created page 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...")
- 23:35, 11 October 2024 Eq talk contribs created page File:CombatStyles (bow, rapid).png
- 23:35, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (bow, rapid).png
- 23:35, 11 October 2024 Alex talk contribs created page Module:Skill calc (Created page with "local p = {} local helpers = require(string.format('%s/Helpers', mw.getCurrentFrame():getTitle())) local commas = require('Module:Addcommas')._add local coins = require('Module:Coins')._amount local gePrices = mw.loadJsonData('Module:GEPrices/data.json') local farmingCTS = { ['Potato'] = { 101, 180 }, ['Onion'] = { 105, 180 }, ['Cabbage'] = { 107, 180 }, ['Tomato'] = { 112, 180 }, ['Sweetcorn'] = { 88, 180 }, ['Strawberry'] = { 103, 180 }, ['Watermelon'] = { 126...")
- 23:31, 11 October 2024 Eq talk contribs created page File:CombatStyles (bow, accurate).png
- 23:31, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (bow, accurate).png
- 23:30, 11 October 2024 Eq talk contribs deleted File:CombatStyles (bow, accurate).png (content was: "", and the only contributor was "Eq" (talk))
- 23:30, 11 October 2024 Alex talk contribs created page RuneScape:Lua (Created page with "{{External|rs|rsc}} '''Lua''' is a programming language that is integrated into ''{{SITENAME}}'' with Scribunto. Lua source code is run from Modules in their own namespace, and invoked with <code><nowiki>{{#invoke:Module|function}}</nowiki></code>; this should done with a wrapper template. For example, if we have a module named "foo", then we should have a template called "Template:Foo" consisting of <code><nowiki>{{#invoke:Foo|main}}</nowiki><...")
- 23:28, 11 October 2024 Alex talk contribs created page Module:Trailblazer Region (Created page with "local p = {} local lang = mw.getContentLanguage() local regions = { misthalin = true, karamja = true, asgarnia = true, desert = true, fremennik = true, kandarin = true, morytania = true, tirannwn = true, wilderness = true, kourend = true, varlamore = true, } function p._main(region, note, link, global_highlight, league) if region == nil or string.lower(region) == "no" then return "None" end local ret = {} for value in string.gmatch(region, "[^,]+") do...")
- 23:28, 11 October 2024 Alex talk contribs created page Module:Sandbox/doc (Created page with "{{Documentation}} '''This is the general purpose sandbox for lua modules.''' It can be used to test changes to existing modules, prototype new modules, experimenting with lua features, or for any other purpose. Much like RuneScape:Sandbox, this page is free to edit for all - if you want to use code personally or for long periods without others editing it, make a personal module sandbox at <code>Module:Sandbox/User:{{USERNAME}}</code> or subpages of that. Invocation...")
- 23:28, 11 October 2024 Alex talk contribs created page Module:Sandbox (Created page with "local tb = require('Module:Trailblazer Region')._badge local p = {} function p.main(frame) local args = frame:getParent().args local orRegions = args['or'] or 'No' local regions = {'misthalin', 'karamja', 'asgarnia', 'desert', 'fremennik', 'kandarin', 'morytania', 'tirannwn', 'wilderness', 'kourend'} local ret = mw.html.create('tr') mw.log(args[1]) if args['incompletable'] == 'Yes' then ret:tag('th'):wikitext(args[1]):addClass('table-bg-red') else ret:tag(...")
- 23:27, 11 October 2024 Alex talk contribs created page Template:Invokes/doc (Created page with "{{Documentation}} This template should be put near the beginning of a template or module's documentation page to link to a module that the template invokes, or a template that invokes the module (respectively). <pre> {{Invokes|ModuleName}} or {{Invokes|TemplateName}} </pre> ==Parameters== ===(1)=== On a template documentation page, this parameter should be supplied with the page title for a module that the template invokes (without the "Module:" namespace prefix).<br>...")
- 23:27, 11 October 2024 Alex talk contribs created page Template:Invokes (Created page with "<includeonly>{{#ifeq:{{NAMESPACE}}|Module|<div class="seealso">'''''{{#replace:{{FULLPAGENAME}}|/doc}}''' is invoked by [[{{{page|Template:{{{1}}}}}}]].{{#ifeq:{{lc:{{{category}}}}}|no||{{#ifeq:{{SUBPAGENAME}}|doc||Category:Template invoked modules}}}}''</div>|<div class="seealso">'''''{{#replace:{{FULLPAGENAME}}|/doc}}''' invokes [[Module:{{{1}}}]] using Lua.{{#ifeq:{{lc:{{{category}}}}}|no||{{#ifeq:{{SUBPAGENAME}}|doc||Category:Lua-based templat...")
- 23:26, 11 October 2024 Eq talk contribs created page File:CombatStyles (bow, accurate).png
- 23:26, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (bow, accurate).png
- 23:26, 11 October 2024 Eq talk contribs deleted File:CombatStyles (bow, accurate).png (content was: "", and the only contributor was "Eq" (talk))
- 23:25, 11 October 2024 Alex talk contribs created page Module:Top icons/doc (Created page with "{{documentation}} This module is used in Template:External to generate the top icons. It can also be called from other modules using its helper function. {{Helper module |name=Top icons |fname1 = _main(args) |ftype1 = String |fuse1 = Returns a string that adds top icons to the page. <code>args</code> must be a table of arguments. Numbered arguments must have values of <code>rs</code>, <code>rsc</code>, <code>meta</code> or <code>wp</code>. To provide a specific pag...")
- 23:25, 11 October 2024 Alex talk contribs created page Module:Top icons (Created page with "--<nowiki> local p = {} local sites = { rs = { params = { 'rs' }, interwiki = 'rsw', wikiname = 'The RuneScape Wiki', }, rsc = { params = { 'rsc' }, interwiki = 'classicrsw', wikiname = 'The RuneScape Classic Wiki', }, meta = { params = { 'meta' }, interwiki = 'meta', wikiname = 'The Meta Weird Gloop Wiki', }, wp = { params = { 'wp' }, interwiki = 'wikipedia', wikiname = 'Wikipedia', }, } local order = { 'rs', 'rsc', 'meta', 'wp' } loc...")
- 23:25, 11 October 2024 Alex talk contribs created page Template:External/doc (Created page with "{{External|rs|rsc}} {{Documentation}} The '''External''' template adds links to the RuneScape Wiki, the RuneScape Classic Wiki, Meta Weird Gloop Wiki, and Wikipedia beside the "Discussion" tab above an article's title. The links are not added to the mobile skin. ==Usage== External can be used with either unnamed parameters or named parameters. Parameter order does not matter - the order the buttons are shown in will alwa...")
- 23:24, 11 October 2024 Alex talk contribs created page Template:External (Created page with "<includeonly>{{#invoke:Top icons|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 23:24, 11 October 2024 Eq talk contribs created page File:CombatStyles (bow, accurate).png
- 23:24, 11 October 2024 Eq talk contribs uploaded File:CombatStyles (bow, accurate).png
- 23:23, 11 October 2024 Alex talk contribs created page Abyssal whip (Created page with "{{External|rs}} {{Infobox Item |name = Abyssal whip |image = File:Abyssal whip.png |release = 15 February 2005 |update = Ghosts Ahoy and Slayer Update |members = Yes |quest = No |tradeable = Yes |placeholder = Yes |equipable = Yes |stackable = No |noteable = Yes |options = Wield, Drop |examine = A weapon from the Abyss. |value = 120001 |weight = 0.453 |exchange = Yes |id = 4151 }} 130px|left The '''abyssal whip''' is a one-han...")
- 23:18, 11 October 2024 Alex talk contribs created page Template:TemplateData/doc (Created page with "{{Documentation}} This template should be used on other templates' documentation pages when adding template data using Extension:TemplateData. This template accepts one unnamed parameter, which should be the the whole <code>templatedata</code> text. Also adds Category:Templates using TemplateData to pages. {{TemplateData|nocat=yes| <templatedata> { "description": "Used on template docs to enclose the templatedata parser tag", "params...")
- 23:17, 11 October 2024 Alex talk contribs created page Template:TemplateData (Created page with "<includeonly>{{#if:{{{noheader|}}}||==Template data==}} <table class="templatedata mw-collapsible mw-collapsed" style="text-align:center" data-expandtext="show" data-collapsetext="hide"> <tr><th style="min-width:400px">Show/hide template's data</th></tr> <tr><td> '''The following information is used by extensions and applications, such as VisualEditor, to help users implement this template onto pages. Please ensure that it is up-to-date.''' {{{1|}}} </td></tr> </table>...")
- 23:17, 11 October 2024 Alex talk contribs created page Template:CombatStyles (Created page with "<includeonly>{{#invoke:CombatStyles|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 23:16, 11 October 2024 Alex talk contribs created page Module:CombatStyles (Created page with "local p = {} local paramTest = require('Module:Paramtest') local CombatOptionLink = { ['Melee'] = 'Combat Options#Melee weapons', ['Ranged'] = 'Combat Options#Ranged weapons', ['Magic'] = 'Combat Options#Magic weapons', ['Multiple'] = 'Combat Options', ['None'] = '', } -- Combat type -- Weapon Style -- Weapon Style -- Experience gained -- Invisible boost local WeaponStyles = { ['Magic'] = { ['Accurate'] = { -- Trident only ['Weapon Style'] = 'Accurat...")
- 23:14, 11 October 2024 Alex talk contribs created page Template:CombatStyles/doc (Created page with "{{Documentation}} ==Usage== <pre> {{CombatStyles | <!-- The first unnamed parameter determines the combat style of a weapon. --> |speed = <!-- The base attack speed of a weapon. This value is identical to the one used in {{Infobox Bonuses}}. --> |attackrange = <!-- The base attack range of a weapon. This value is identical to the one used in {{Infobox Bonuses}}. --> }} </pre> ==Quick copy== <code><nowiki>{{CombatStyles||speed=|attackra...")
- 23:12, 11 October 2024 Alex talk contribs created page Template:Ctg (Created page with "{{{{{|safesubst:}}}#invoke:Category handler|main}}<noinclude>{{/doc}}</noinclude>")
- 23:12, 11 October 2024 Alex talk contribs created page Module:Category handler (Created page with "--[=[ <pre> -- Implements [Template:Ctg] -- Sorts pages into a category more appropriately than pagename alone -- Default and custom rules are outlined at Template:Category handler/doc --]=] local p = {} local ucf = require('Module:Paramtest').ucfirst local curpage = mw.title.getCurrentTitle() function p.main(frame) local ns = curpage.namespace -- Just don't bother unless we're in content namespaces if not (ns == 0 or ns == 120 or ns == 116) then return ''...")
- 23:10, 11 October 2024 Alex talk contribs created page Template:APIDoc (Created page with "<includeonly>{{#invoke:APIDoc|main}}</includeonly> <noinclude>{{/doc}}</noinclude>")
- 23:09, 11 October 2024 Alex talk contribs created page Module:Map/doc (Created page with "{{Documentation}} {{APIDoc |funcName = map |funcDesc = The main entry point for templates and pages. Should only be called via <code>{{#invoke}}</code> outside of a module. |arg1 = frame |type1 = [https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#frame-object frame object] |desc1 = The frame object automatically passed via <code>{{#invoke}}</code>. |returnType = string |returnDesc = A fully rendered map. }} {{APIDoc |funcName = buildMap |funcDesc =...")
- 23:09, 11 October 2024 Alex talk contribs created page Module:Map (Created page with "local hc = require('Module:Paramtest').has_content -- Package local p = {} -- Feature functions local feat = {} local zoomRatios = { { 3, 8 }, { 2, 4 }, { 1, 2 }, { 0, 1 }, { -1, 1/2 }, { -2, 1/4 }, { -3, 1/8 } } -- Default arg values local defaults = { -- Map options type = 'mapframe', width = 300, height = 300, zoom = 2, mapID = 0, -- RuneScape surface x = 3233, -- Lumbridge lodestone y = 3222, plane = 0, align = 'center', -- Feat...")
- 23:08, 11 October 2024 Alex talk contribs created page Module:LocLine (Created page with "local p = {} local editBtn = '<small>' .. require('Module:Edit button')() .. '</small>' local yesno = require('Module:Yesno') local isEmpty = require('Module:Paramtest').is_empty local hc = require('Module:Paramtest').has_content local buildMap = require('Module:Map').buildMap local membscol = { [true] = 'link=Members|alt=Members', [false] = 'link=Free-to-play|alt=Free-to-play', } function p.main(frame) local...")
- 23:08, 11 October 2024 Alex talk contribs created page Template:No documentation (Created page with "{{Documentation}} This template should be used when there is no documentation for a Module or Template.")
- 23:07, 11 October 2024 Alex talk contribs created page Module:T/doc (Created page with "{{Documentation}} This template should be used when there is no documentation for a Module or Template.")
- 23:07, 11 October 2024 Alex talk contribs created page Module:T (Created page with "-- <nowiki> -- Template:T -- local p = {} function p.main(frame) local args = frame:getParent().args return p._main(args) end function p._main(args) local link = args[1] local uri local targs = {} local ns local i = 1 -- strip transclusion modifiers (mw:Help:Magic words#Transclusion modifiers) link = link :gsub('safesubst:', '') :gsub('subst:', '') :gsub('int:', '') :gsub('msg:', '')...")
- 23:07, 11 October 2024 Alex talk contribs created page Template:T/doc (Created page with "{{Documentation}} A template link with a variable number of parameters. ===Use=== To use this for templates, use :{{T|T|<nowiki>parameter 1|parameter 2|parameter 3|...|parameter 20</nowiki>}}<!-- self-referential examples! --> To use other namespaces, use the namespace as prefix, for example :{{T|T|User:Example}} And to show transclusions of mainspace pages, use :{{T|T|:Bucket}} ===Example=== <code><nowiki>{{T|Stub}}</nowiki></code> :{{T|Stub}} <code><nowiki>{{T|Stub...")
- 23:06, 11 October 2024 Alex talk contribs created page Template:T (Created page with "<includeonly><span class="plainlinks">{{#invoke:T|main}}</span></includeonly><noinclude>{{/doc}}</noinclude>")
- 23:04, 11 October 2024 Alex talk contribs created page Module:Edit button/doc (Created page with "{{Documentation}} {{Helper module |name=Edit button |fname1=(text, page) |ftype1=string, string |fuse1=Creates an edit button for <code>page</code>. <code>page</code> defaults to the current page that the module is invoked on<br><br><code>text</code> defaults to "edit" }}")
- 23:03, 11 October 2024 Alex talk contribs created page 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...")
- 23:03, 11 October 2024 Eq talk contribs deleted File:RuneRealm Pet Storage.mp4 (content was: "", and the only contributor was "Eq" (talk))
- 23:03, 11 October 2024 Alex talk contribs created page Template:Tooltip text (Created page with "<includeonly>{{#invoke:Tooltip|div}}</includeonly><noinclude>{{Tooltip/doc}}</noinclude>")