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:13, 15 October 2024 Alex talk contribs created page Module:Infotable Bonuses/doc (Created page with "{{No_documentation}}")
- 23:12, 15 October 2024 Alex talk contribs created page Template:Elemental weakness table/doc (Created page with "{{documentation}} {{invokes|Elemental_weakness_table}} {{t|Elemental_weakness_table}} generates a table of monsters with an Elemental weakness. A spell type (Air, Water, Earth, Fire) may be passed as an argument to generate a table of only monsters with that specific weakness. ==Usage== <pre> {{Elemental_weakness_table}} </pre> will generate a table of all monsters with an elemental weakness: {{Elemental_weakness_table}} <pre> {{Elemental_weakness_table|Air}} </p...")
- 23:12, 15 October 2024 Alex talk contribs created page Template:Elemental weakness table (Created page with "<includeonly>{{#invoke:Elemental_weakness_table|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 23:11, 15 October 2024 Alex talk contribs created page Module:Elemental weakness table/doc (Created page with "{{documentation}} <includeonly>Category:Transclusion templates </includeonly>")
- 23:11, 15 October 2024 Alex talk contribs created page Module:Elemental weakness table (Created page with "require('strict') local p = {} local arr = require('Module:Array') local pagelisttools = require('Module:PageListTools') local pageswithcats = pagelisttools.pageswithcats local smwstats = {} -- Formats a table header function p.header(tbl, verbose) local tr = tbl:tag('tr') :tag('th'):attr('colspan', '2'):wikitext('Monster'):done() :tag('th'):wikitext('Members'):done() :tag('th'):wikitext('Weak To'):done() :tag('th'):wikitext('Weakn...")
- 23:09, 15 October 2024 Alex talk contribs created page Module:DependencyList/doc (Created page with "{{No_documentation}}")
- 23:07, 15 October 2024 Alex talk contribs created page Template:CombatStylesDisplay/doc (Created page with "{{Documentation}} This template pulls smw data from {{T|Infobox Bonuses}} combatstyle parameter to display weapons of the same style in a list format. ==Usage== <pre>{{CombatStylesDisplay|type = <!-- A type of weapon. -->|Range = <!-- Usable values range from 1 to 10 depending on the weapon type.--> }}</pre> ==Details== Possible values for the first field are: * 2h Sword * Axe * Banner * Bladed Staff * Blaster * Bludgeon * Blunt * Bow * Bulwark * Chinchompas * Claw *...")
- 23:07, 15 October 2024 Alex talk contribs created page Template:CombatStylesDisplay (Created page with "<includeonly>{{#invoke:CombatStylesDisplay|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 23:07, 15 October 2024 Alex talk contribs created page Module:CombatStylesDisplay/doc (Created page with "{{No_documentation}}")
- 23:06, 15 October 2024 Alex talk contribs created page Module:CombatStylesDisplay (Created page with "local p = {} local contains = require('Module:Array').contains local paramTest = require('Module:Paramtest') local poisonableWeaponTypes = { 'Spear', 'Stab Sword', 'Thrown' } -- Remove any weapons where args.range isn't equal to smw range function filterByRange(data, range) local filteredData = {} for _, weapon in ipairs(data) do if(range == weapon.range) then table.insert(filteredData, weapon) end end return filteredData end function loadData(weaponType,...")
- 19:26, 15 October 2024 Alex talk contribs created page Template:Skilling success chart/doc (Created page with "{{documentation}} Template used to add a graph of skilling success chances on a page. Where to use: *Pages where the chance of obtaining an item (such as fishing raw tuna, cooking anglerfish, mining runite rocks, cutting yew trees) or an NPC (such as hunting black chinchompas, thieving from Knights of Ardougne) are dependent on the player's level in the appropriate skill. ==Usage== <pre>{{Ski...")
- 19:25, 15 October 2024 Alex talk contribs created page Template:Skilling success chart (Created page with "{{#invoke:Skilling success chart|main}}<includeonly>{{Mainonly|Category:Pages with success charts}}</includeonly><noinclude>{{/doc}}Category:Transclusion templates</noinclude>")
- 19:25, 15 October 2024 Alex talk contribs created page Module:Skilling success chart/doc (Created page with "{{No_documentation}}")
- 19:25, 15 October 2024 Alex talk contribs created page Module:Skilling success chart (Created page with "local chart = require( 'Module:Chart data' ) local p = {} function interp(low, high, level) local value = math.floor(low*(99-level)/98 + high*(level-1)/98 + 0.5) + 1 return math.min(math.max(value / 256, 0), 1) end function oldInterp(low, high, level) local value = math.modf(low*(99-level)/98) + math.modf(high*(level-1)/98) + 1 return math.min(math.max(value / 256, 0), 1) end function bonusInterp(low, high, bonuslow, bonushigh, level) local value = interp(low,...")
- 19:23, 15 October 2024 Alex talk contribs created page Module:Rgba/doc (Created page with "{{Documentation}} {{Helper module |name = Rgba |fname1 = <nowiki>new( red, [green|0], [blue|0], [alpha|1] )</nowiki>;; <nowiki>new( hex )</nowiki> |ftype1 = number/string, number/nil, number/nil, number/nil |fuse1 = Returns a new rgba object. Values <code>red</code>, <code>green</code> and <code>blue</code> are in the range 0-255; <code>alpha</code> is 0-1. It is also possible to give a hex string e.g. <code>#112233</code> or <code>#11223344</code>....")
- 19:23, 15 October 2024 Alex talk contribs created page Module:Rgba (Created page with "-- <nowiki> ---@class rgba local rgba = {} local libraryUtil = require( 'Module:libraryUtil' ) local max = math.max local min = math.min local floor = math.floor local abs = math.abs local checkRgbaClass = libraryUtil.makeCheckClassFunction( 'Module:Rgba' , 'rgba', rgba, 'rgba object' ) local function clip( val, lower, upper ) return min( upper, max( lower, val ) ) end local function round( num, d ) d = 10^( d or 0 ) return floor( num*d + 0.5 ) / d end lo...")
- 19:22, 15 October 2024 Alex talk contribs created page Module:LibraryUtil/doc (Created page with "{{No_documentation}}")
- 19:22, 15 October 2024 Alex talk contribs created page Module:LibraryUtil (Created page with "-- <nowiki> local libraryUtil = require( 'libraryUtil' ) -- libraryUtil is a standard scribunto module, the following commented out code is just to show what is inside it. Documentation about these functions can be found at https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#libraryUtil --[=[ local libraryUtil = {} function libraryUtil.checkType( name, argIdx, arg, expectType, nilOk ) if arg == nil and nilOk then return end if type( arg ) ~= ex...")
- 19:22, 15 October 2024 Alex talk contribs created page Module:Chart data/doc (Created page with "{{documentation}} Helps create the json to generate charts using [https://www.chartjs.org/ Chart.js] through MediaWiki:Gadget-Charts-core.js. {{Helper module|name = Chart data |fname1 = _main( args ) |ftype1 = table/chart |fuse1 = Turns a table/chart object into a json string. |fname2 = <nowiki>convertToXYFormat( ys, [xs|{}] )</nowiki> |ftype2 = table, table |fuse2 = Converts the <code>ys</code> array into an array of <code>{x = n, y = y[n]}</co...")
- 19:22, 15 October 2024 Alex talk contribs created page Module:Chart data (Created page with "-- <nowiki> ---@class chart local chart = {} ---@class dataSet local dataSet = {} local libraryUtil = require( 'Module:libraryUtil' ) local rgba = require( 'Module:Rgba' ) local isEmpty = require( 'Module:Paramtest' ).is_empty local arr = require( 'Module:Array' ) ---@alias xyData table<string, number> ---@alias xyDataSet xyData[] ---@alias dataArr number[] ---@alias options_t table<string, string|number|options_t> ---@param val any ---@param default any ---@return a...")
- 19:20, 15 October 2024 Alex talk contribs created page Template:Bestiarytable/doc (Created page with "{{documentation}} {{invokes|Bestiary}} This template renders a bestiary table for monsters belonging to a certain level group. __TOC__ ==Usage== {{T|Bestiarytable|fromlevel=X|tolevel=Y|levelsort=yes/no|mems=All/Members/F2P}} ==Examples== {{T|Bestiarytable|fromlevel=1|tolevel=1|levelselect=yes}} {{Bestiarytable|fromlevel=1|tolevel=1|levelselect=yes}} {{T|Bestiarytable|fromletter=A|toletter=A|levelselect=no|levelsort=no}} {{Bestiarytable|fromletter=A|toletter=A|leve...")
- 19:20, 15 October 2024 Alex talk contribs created page Template:Bestiarytable (Created page with "<includeonly>{{#invoke:Bestiary|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 19:20, 15 October 2024 Alex talk contribs created page Module:Bestiary/doc (Created page with "{{No_documentation}}")
- 19:20, 15 October 2024 Alex talk contribs created page Module:Bestiary (Created page with "require('strict') local p = {} local yesno = require('Module:Yesno') local pt = require('Module:Paramtest') local arr = require('Module:Array') local pagelisttools = require('Module:PageListTools') local pageswithcats = pagelisttools.pageswithcats local smwstats = {} -- Formats a table header function p.header(tbl, verbose) local tr = tbl:tag('tr') :tag('th'):attr('colspan', '2'):wikitext('Monster'):done() :tag('th'):wikitext('Members'):done()...")
- 18:59, 15 October 2024 Alex talk contribs created page Template:FloorNumber/doc (Created page with "{{Documentation}} The '''FloorNumber''' template outputs a textual floor reference, using the recommended British style; it takes an input of a <code>uk</code> parameter with a British floor numbering convention. A note is also provided to explain the floor reference to the reader when hovered over. ==Usage== ===Basic usage=== <pre> {{FloorNumber|uk=UK floor}} </pre> The <code>uk</code> parameter must be used to specify which f...")
- 18:59, 15 October 2024 Alex talk contribs created page Template:FloorNumber (Created page with "<includeonly>{{#invoke:FloorNumber|main}}</includeonly><noinclude>{{/doc}}Category:Transclusion templates</noinclude>")
- 18:58, 15 October 2024 Alex talk contribs created page Module:FloorNumber/doc (Created page with "{{No_documentation}}")
- 18:58, 15 October 2024 Alex talk contribs created page Module:FloorNumber (Created page with "local ordinal = require('Module:Ordinal')._main local yn = require('Module:Yesno') local p = {} function p.main(frame) return p._main(frame:getParent().args) end function p._main(args) local nohelp = yn(args.nohelp) local caps = yn(args.caps) local flr = tonumber(args.uk) -- prevent people from using anything but the main syntax for consistency across the wiki. Big red errors should make stuff clear. assert(flr, "Missing parameter `uk`") -- prevent unnamed para...")
- 18:57, 15 October 2024 Alex talk contribs created page Module:Ordinal/doc (Created page with "{{No_documentation}}")
- 18:55, 15 October 2024 Alex talk contribs created page Template:Year category/doc (Created page with "{{documentation}} {{invokes|Update}} This template is for formatting update year categories, such as Category:2015 updates. ==Usage== <pre>{{Year category}}</pre> The template will attempt to find the year from the page title. If it fails, the first parameter can be used as an override. <pre>{{Year category|year}}</pre> <includeonly>Category:Transclusion templates</includeonly>")
- 18:55, 15 October 2024 Alex talk contribs created page Template:Year category (Created page with "<includeonly>{{#invoke:Update|year_cat}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 18:54, 15 October 2024 Alex talk contribs created page Template:Year dpl/day (Created page with "<includeonly>{{#dpl: |category = {{PAGENAME}} updates |namespace = Update |category = {{{1}}} |noresultsheader=<nowiki> </nowiki> |format = \n* [[²{#replace:{{{1}}}¦updates}²]],\n** ²{UD¦1=%TITLE%}²,, }}</includeonly><noinclude>{{Year dpl/doc}}Category:DPL templates</noinclude>")
- 18:54, 15 October 2024 Alex talk contribs created page Template:Year dpl/month (Created page with "<includeonly>{{#dpl: |category={{{1}}} |namespace = Category |ordermethod=sortkey |order=descending |format=<nowiki> </nowiki>\n== ²{#replace:{{{1}}}¦updates}² ==\n,²{Year dpl/day¦%TITLE%}²,, }}</includeonly><noinclude>{{Year dpl/doc}}Category:DPL templates</noinclude>")
- 18:54, 15 October 2024 Alex talk contribs created page Template:Year dpl/count (Created page with "<includeonly>{{#dpl: |categoryregexp=\d{1,2} {{{1}}} |category={{PAGENAME}} updates |namespace = Update |format=,,, |resultsheader=1 |noresultsheader=0 |count=2 }}</includeonly><noinclude>{{Year dpl/doc}}Category:DPL templates</noinclude>")
- 18:53, 15 October 2024 Alex talk contribs created page Template:Year dpl/doc (Created page with "{{documentation|Template:Year dpl}} This template generates 'year' pages, such as 2015, using DPL. ==Usage== <pre>{{Year dpl}}</pre> This template will attempt to use the PAGENAME as the year to find. There is currently no way to override this. ==Structure== The DPL calls function as follows: # Year dpl initiates, gathering all categories of Category:Updates by month, and passing each in turn to Year dpl/count...")
- 18:53, 15 October 2024 Alex talk contribs created page Template:Year dpl (Created page with "<includeonly>{{#invoke:Update|year}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 17:57, 15 October 2024 Alex talk contribs created page Template:Update/doc (Created page with "{{documentation}} {{invokes|Update}} This template displays an notification stating the update pages copyrighted by Jagex. ==Usage== This template can be used by entering the following onto a relevant update article. {{t|Update|<nowiki>date=|<rev=>|category=|<link=>|<time=></nowiki>}} ===date=== This required parameter accepts the date. It should not be linked and can be in any format accepted by [https://www.mediawiki.org/wiki/Help:Extension:ParserFunctions#.23time #...")
- 17:57, 15 October 2024 Alex talk contribs created page Template:Update (Created page with "<noinclude>{{external|rs|rsc}}</noinclude>{{#invoke:Update|update}}<noinclude>{{/doc}}</noinclude>")
- 17:57, 15 October 2024 Alex talk contribs created page Template:Patch Notes/doc (Created page with "{{documentation}} {{invokes|Update}} This template displays a copyright notice that the article has patch notes that are Jagex's property. ==Usage== This template can be used by entering the following onto a relevant patch note article. It automatically adds Category:Patch Notes to the article. <pre>{{Patch Notes|date=|rev=}}</pre> ===date=== This required parameter accepts the date. It should not be linked and can be in any format accepted by [https://www.mediaw...")
- 17:56, 15 October 2024 Alex talk contribs created page Template:Patch Notes (Created page with "<includeonly>{{#invoke:Update|patchnotes}}</includeonly><noinclude></div>{{/doc}}</noinclude>")
- 17:56, 15 October 2024 Alex talk contribs created page Template:Date page dpl.default/doc (Created page with "{{Documentation}} This template is used by the DPL call in Template:Date page. It is intentionally blank. See Template:Date page dpl for more information. <includeonly>Category:DPL templatesCategory:Formatting templates</includeonly>")
- 17:56, 15 October 2024 Alex talk contribs created page Template:Date page dpl.default (Created page with "<noinclude>{{/doc}}")
- 17:55, 15 October 2024 Alex talk contribs created page Template:Date page/doc (Created page with "{{documentation}} This template is a DPL call to collect and format all update pages with a specific date. It uses Template:Date page dpl (based on Module:Update) and Template:Date page dpl.default to do so. In the case of a date featuring no historic updates, no output will be shown if the first parameter is left blank (ie. date pages), or "... Nothing interesting happened" will show if the first parameter is set. ==Usage== <pre>{{Date page}}</pre> The te...")
- 17:55, 15 October 2024 Alex talk contribs created page Template:Date page (Created page with "<includeonly>{{#vardefine:datedpl|{{#dpl: |category = {{{1|{{PAGENAME}}}}} updates |uses = Template:Update¦Template:Patch Notes |ordermethod = sortkey |order = descending |include = {Update¦Date page dpl},{Patch Notes¦Date page dpl} |format = ,\n* ,, }}}}{{#ifexpr:{{#len:{{#var:datedpl}}}} > 100 |{{#var:datedpl}} |{{#if:{{{1|}}}|* ... Nothing interesting happened.|{{#var:datedpl}}}} }}{{mainonly|{{#iferror:{{#time:j F|{{PAGENAME}}}}||Category:{{PAGENAME}} updates|...")
- 17:55, 15 October 2024 Alex talk contribs created page Template:Date page dpl/doc (Created page with "{{documentation}} {{invokes|Update}} This template is used to format the lines of the DPL call of Template:Date page. It uses the same parameters as Template:Update and Template:Patch Notes. Template:Date page dpl.default is called instead, if the template is not found. Example intended use: <pre> uses = Template:Update,Template:Patch Notes include = {Update|Date page dpl},{Patch Notes|Date page dpl}</pre> <includeonly>Category:DPL templatesCa...")
- 17:55, 15 October 2024 Alex talk contribs created page Template:Date page dpl (Created page with "<includeonly>{{#invoke:Update|datedpl}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 17:54, 15 October 2024 Alex talk contribs created page Template:Date category/doc (Created page with "{{documentation}} {{invokes|Update}} This template is for formatting update date categories, such as Category:28 November updates. ==Usage== <pre>{{Date category}}</pre> The template will attempt to find the date from the page title. If it fails, the first parameter can be used as an override. <pre>{{Date category|day month}}</pre> <includeonly>Category:Transclusion templates</includeonly>")
- 17:54, 15 October 2024 Alex talk contribs created page Template:Date category (Created page with "<includeonly>{{#invoke:Update|date_cat}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 17:54, 15 October 2024 Alex talk contribs created page Template:Parentitle/doc (Created page with "{{documentation}} This template is used to determine if the <tt>no-parenthesis-style</tt> class is to be added to a page, in order to suppress the styling applied to parentheses in article titles. See rsw:Forum:Two visual changes for more information. ==Usage== <pre>{{parentitle|parameter to check}}</pre> The template checks the parameter against the pagename. If they are the same, or if the parameter is empty, the class is added, otherwise nothing is added. The...")
- 17:53, 15 October 2024 Alex talk contribs created page Template:Parentitle (Created page with "{{#if:{{{1|}}}|{{#ifeq:{{{1}}}|{{#replace:{{#replace:{{PAGENAME}}|'|'}}|&|&}}|no-parenthesis-style|}}|no-parenthesis-style}}<noinclude>{{/doc}}</noinclude>")