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:02, 11 October 2024 Alex talk contribs created page Template:Tooltip/doc (Created page with "{{Documentation|Template:Tooltip}} Template:Tooltip and Template:Tooltip text are templates is for generating clickable tooltips to show additional information. They are to be used together. These tooltips '''require JavaScript''', so should only be used for non-essential additional information only. They will not show at all in the mobile skin or if the user has JavaScript disabled. The script powering these tooltips is located at MediaWiki:Gadget-tooltips.js...")
- 23:02, 11 October 2024 Alex talk contribs created page Template:Tooltip (Created page with "<includeonly>{{#invoke:Tooltip|span}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 23:02, 11 October 2024 Eq talk contribs created page File:RuneRealm Pet Storage.mp4
- 23:02, 11 October 2024 Eq talk contribs uploaded File:RuneRealm Pet Storage.mp4
- 23:01, 11 October 2024 Alex talk contribs created page Module:Tooltip (Created page with "local p = {} local yn = require('Module:Yesno') local hc = require('Module:Paramtest').has_content -- module access point for div p._div = function(args) local name = args.name if not hc(name) then error('Name is required!') end local content = args.content local hasarrow = yn(args.arrow or 'yes', true) local arrowsize = tonumber(args.arrowsize) or 10 local limitwidthbool = yn(args.limitwidth or 'yes', true) local style = args.style local div = mw.ht...")
- 23:00, 11 October 2024 Alex talk contribs created page Module:DPLlua/doc (Created page with "{{Documentation}} Uses Template:DPLlua helper to make it possible to include all parameters of a template while maintaining good performance. {{Helper module|name=DPLlua |fname1 = ask( ... ) |ftype1 = tables |fuse1 = <code>ask</code> takes a series of tables each containing the settings for a DPL query; it will return the same number of result tables as input tables. All formatting settings are stripped from the config. If the config does not contains <co...")
- 23:00, 11 October 2024 Alex talk contribs created page Module:DPLlua (Created page with "-- <nowiki> local dpl = {} local libraryUtil = require( 'libraryUtil' ) local hasContent = require( 'Module:Paramtest' ).has_content local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg dpl.pipe = '¦' local dataContentMarker = '`#@@#`' local allIncludedParamNames = {} -- Custom function for splitting a string because mw.text.split() is waaay too slow local function split( str, pattern, plain ) local res = {} local con...")
- 23:00, 11 October 2024 Alex talk contribs created page Module:Paramtest/doc (Created page with "{{documentation}} {{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{ {ar...")
- 23:00, 11 October 2024 Alex talk contribs created page 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},...}...")
- 22:59, 11 October 2024 Alex talk contribs created page Module:Yesno/doc (Created page with "{{documentation}} {{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 }}")
- 22:59, 11 October 2024 Alex talk contribs created page 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 --...")
- 22:59, 11 October 2024 Alex talk contribs created page Module:Array/doc (Created page with "{{Documentation}} {{Helper module |name = Array |fname1 = <nowiki>all( arr, [fn] )</nowiki> |ftype1 = <samp>arr: any[]</samp><br><samp>fn?: any</samp><br><samp>-> boolean</samp> |fuse1 = Behaviour depends on the value of <code>fn</code>: * <code>nil</code> - Checks that the array doesn't contain any '''false''' elements. * <code>fun(elem: any, i?: integer): boolean</code> - Returns '''true''' if <code>fn</code> returns '''true''' for every element. * <code>nu...")
- 22:58, 11 October 2024 Alex talk contribs created page Module:Array (Created page with "local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---Returns the length of the array but it also works on proxy arrays ---@param arr any[] ---@return integer local function len(arr) local l = #arr if l == 0 then if arr[1] ~= nil then -- Exponential search to find length of proxy table local low = 1 local high = 1 local ceil = math.ceil while arr[high] ~= nil do high...")
- 22:56, 11 October 2024 Alex talk contribs created page 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...")
- 22:56, 11 October 2024 Alex talk contribs created page Module:DependencyList (Created page with "local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local dpl = require( 'Module:DPLlua' ) local tooltip = require( 'Module:Tooltip' ) local moduleIsUsed = false local COLLAPSE_LIST_LENGTH_THRESHOLD = 5 local MAX_DYNAMIC_REQUIRE_LIST_LENGTH = 30 local dynamicRequireListQueryCache = {} local builtins = { ["libraryUtil"] = { link = "mw:S...")
- 22:55, 11 October 2024 Alex talk contribs created page Module:Documentation/doc (Created page with "{{External|meta|rs|rsc}} {{Documentation}} Implements Template:Documentation for templates and modules.")
- 22:55, 11 October 2024 Alex talk contribs created page Module:Documentation (Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local yn = require( 'Module:Yesno' ) local p = {} function p.doc( frame ) local title = mw.title.getCurrentTitle() local args = frame:getParent().args local page = args[1] or mw.ustring.gsub( title.fullText, '/doc$', '' ) local addDependencyList = yn( args.DependencyList or true ) local ret, cats, ret1, ret2, ret3 local onModule = title.namespace == 828 -- subpage head...")
- 22:55, 11 October 2024 Alex talk contribs created page Template:Documentation/doc (Created page with "{{External|meta|rs|rsc}} {{Documentation}} {{Invokes|Documentation}} <code><nowiki>{{Documentation}}</nowiki></code> is transcluded in template/module documentation pages. This template should only be used on subpages titled "doc". This is '''not''' the template of the same name from Wikipedia and it is not used in the same way. ==Usage== Place {{t|documentation}} at the top of the documentation page, then transclude <code><nowiki>{{/doc}}</nowiki></code> directly from...")
- 22:54, 11 October 2024 Alex talk contribs created page Template:Documentation (Created page with "<includeonly>{{#invoke:Documentation|doc}}__NOEDITSECTION__</includeonly><noinclude>{{/doc}}</noinclude>")
- 22:54, 11 October 2024 Alex talk contribs created page Module:Infobox Bonuses/doc (Created page with "{{Documentation}}")
- 22:53, 11 October 2024 Alex talk contribs created page 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:53, 11 October 2024 Alex talk contribs created page 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")
- 22:52, 11 October 2024 Alex talk contribs created page Template:Helper module (Created page with "{{Documentation}} {{Invokes|Helper module}} Provides documentation for functions of modules that contain functions useful for other modules. This template should be part of a comment, and should be at the top of the source code, '''before''' any <nowiki><pre> or <nowiki></nowiki> tags. There is no limit to the number of functions this template can list. This template is called by RuneScape:Lua/Helper modules to help produce a dynamic table. <pre> {{Helper module |n...")
- 22:51, 11 October 2024 Alex talk contribs created page Module:Mainonly/doc (Created page with "{{documentation}} {{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 }}")
- 22:51, 11 October 2024 Alex talk contribs created page 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...")
- 22:50, 11 October 2024 Alex talk contribs created page Module:Infobox/doc (Created page with "{{documentation}} {{ToC|right}} ==Creating a template step-by-step== ===Import Module:Infobox=== <syntaxhighlight lang="lua"> local infobox = require('Module:Infobox') </syntaxhighlight> ===Unpack the frame arguments=== <syntaxhighlight lang="lua"> function p.main(frame) local args = frame:getParent().args ... </syntaxhighlight> ===Define an Infobox object=== {{Main|Module:Infobox#new}} <syntaxhighlight lang="lua"> local ret = infobox.new(args) </syntaxhighlight>...")
- 22:49, 11 October 2024 Alex talk contribs created page 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 :...")
- 22:48, 11 October 2024 Eq talk contribs deleted Template:Infotable Bonuses row/doc (content was: "{{Documentation|Template:Infotable Bonuses row}} The '''Infotable Bonuses''' templates are used to display the stat bonuses of one or multiple items, and can calculate a total to display at the bottom. ==Quick copy & paste== <pre>{{Infotable Bonuses header}} {{Infotable Bonuses row|name=|astab=0|aslash=0|acrush=0|amagic=0|arange=0|dstab=0|dslash=0|dcrush=0|dmagic=0|drange=0|str=0|rstr=0|mdm...", and the only contributor was "Eq" (talk))
- 22:48, 11 October 2024 Eq talk contribs created page Template:Infotable Bonuses row/doc (Created page with "{{Documentation|Template:Infotable Bonuses row}} The '''Infotable Bonuses''' templates are used to display the stat bonuses of one or multiple items, and can calculate a total to display at the bottom. ==Quick copy & paste== <pre>{{Infotable Bonuses header}} {{Infotable Bonuses row|name=|astab=0|aslash=0|acrush=0|amagic=0|arange=0|dstab=0|dslash=0|dcrush=0|dmagic=0|drange=0|str=0|rstr=0|mdmg=0|prayer=0}} {{Infotable Bonuses totals}} {{Infotable Bonuses footer}}</pre> =...")
- 22:46, 11 October 2024 Eq talk contribs deleted Editing Template:Infotable Bonuses row/doc (content was: "{{Documentation|Template:Infotable Bonuses row}} The '''Infotable Bonuses''' templates are used to display the stat bonuses of one or multiple items, and can calculate a total to display at the bottom. ==Quick copy & paste== <pre>{{Infotable Bonuses header}} {{Infotable Bonuses row|name=|astab=0|aslash=0|acrush=0|amagic=0|arange=0|dstab=0|dslash=0|dcrush=0|dmagic=0|drange=0|str=0|rstr=0|mdm...", and the only contributor was "Eq" (talk))
- 22:46, 11 October 2024 Eq talk contribs created page Editing Template:Infotable Bonuses row/doc (Created page with "{{Documentation|Template:Infotable Bonuses row}} The '''Infotable Bonuses''' templates are used to display the stat bonuses of one or multiple items, and can calculate a total to display at the bottom. ==Quick copy & paste== <pre>{{Infotable Bonuses header}} {{Infotable Bonuses row|name=|astab=0|aslash=0|acrush=0|amagic=0|arange=0|dstab=0|dslash=0|dcrush=0|dmagic=0|drange=0|str=0|rstr=0|mdmg=0|prayer=0}} {{Infotable Bonuses totals}} {{Infotable Bonuses footer}}</pre> =...") Tag: Visual edit: Switched
- 21:55, 11 October 2024 Eq talk contribs deleted Cape of Accomplishment Perks (content was: "Below are all the cape perks listed per tier, these also work backwards (for example, a Trimmed cape also has the Untrimmed perk etc.) {| class="wikitable sortable" style="text-align: center;" !'''Skill''' !'''Skillcape''' !'''Untrimmed Perks''' !'''Trimmed Perks''' !'''Mastery Perks''' |- |'''Attack''' |frameless|40x40pxFile:Attack cape(t).png|frameless...", and the only contributor was "Eq" (talk))
- 21:55, 11 October 2024 Eq talk contribs created page Capes of Accomplishment and Perks (Created page with "Below are all the cape perks listed per tier, these also work backwards (for example, a Trimmed cape also has the Untrimmed perk etc.) {| class="wikitable sortable" style="text-align: center;" !'''Skill''' !'''Skillcape''' !'''Untrimmed Perks''' !'''Trimmed Perks''' !'''Mastery Perks''' |- |'''Attack''' |frameless|40x40pxframeless|40x40pxframeless|40x40px |No Warriors Guild t...")
- 21:37, 11 October 2024 Eq talk contribs created page File:Prestige Master cape.png (Uploaded with SimpleBatchUpload)
- 21:37, 11 October 2024 Eq talk contribs uploaded File:Prestige Master cape.png (Uploaded with SimpleBatchUpload)
- 21:37, 11 October 2024 Eq talk contribs created page File:Prestiger cape.png (Uploaded with SimpleBatchUpload)
- 21:37, 11 October 2024 Eq talk contribs uploaded File:Prestiger cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Infernal max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs uploaded File:Infernal max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Imbued zamorak max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs uploaded File:Imbued zamorak max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Zamorak max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs uploaded File:Zamorak max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs uploaded File:Max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Saradomin max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs uploaded File:Saradomin max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Assembler max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs created page File:Ardougne max cape.png (Uploaded with SimpleBatchUpload)
- 21:29, 11 October 2024 Eq talk contribs uploaded File:Assembler max cape.png (Uploaded with SimpleBatchUpload)