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).
- 01:30, 16 October 2024 Alex talk contribs created page Template:Old School RuneScape Wiki/Poll (Created page with "<noinclude>{{/doc}}</noinclude><div class="mainpage-poll tile nomobile"> <h2>Poll</h2> <p><poll> Which skilling guild would you like to see added next? Agility Guild Construction Guild Fletching Guild Herblore Guild Prayer Guild Runecrafting Guild Slayer Guild Smithing Guild Thieving Guild Rework an existing guild </poll></p> </div>")
- 01:30, 16 October 2024 Alex talk contribs created page Template:Poll/doc (Created page with "{{documentation}} :''Not to be confused with Template:Old School RuneScape Wiki/Poll'' This template provides formatting for poll results for use in Old School Content Poll pages. This automatically ignores answer votes for percentage calculation for answers with the names Skip question and Skip. ==Usage== This template can be used by entering the following code. <pre> {{Poll |Question <-- The question text on the poll --> |AnswerX <-- The answer text on the...")
- 01:30, 16 October 2024 Alex talk contribs created page Template:Poll (Created page with "<includeonly>{{#invoke:Poll|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 01:29, 16 October 2024 Alex talk contribs created page Module:Poll/doc (Created page with "{{No_documentation}}")
- 01:29, 16 October 2024 Alex talk contribs created page Module:Poll (Created page with "local p = {} local params = require('Module:Paramtest') local commas = require('Module:Addcommas')._add local math = math function p.main(frame) local args = frame:getParent().args local pollQuestion = args.Question local note = args.Note local totalVotes = findTotalVotes(args) local answers = answerList(args) local wrapper = mw.html.create('div'):addClass('pollbox'):addClass('pollquestion'):done() local tbl = mw.html.create('table'):done() tbl:tag('caption')...")
- 01:28, 16 October 2024 Alex talk contribs created page Template:Level up table/doc (Created page with "{{Documentation}} {{invokes|Level up table}} The '''Level up table''' template is used in the various skill level-up tables (for example, Attack/Level up table) to create a table that details abilities gained with every level, both by members and by all players. These unlocks are described as for free-to-play and members. ==Usage== <pre>{{Level up table |freeplayall = The abilities unlocked upon every level by both free-players and members. |membersall = Th...")
- 01:28, 16 October 2024 Alex talk contribs created page Template:Level up table (Created page with "<includeonly>{{#invoke:Level up table|make_table}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 01:28, 16 October 2024 Alex talk contribs created page Module:Level up table/doc (Created page with "{{No_documentation}}")
- 01:28, 16 October 2024 Alex talk contribs created page Module:Level up table (Created page with "-- -- Implements Template:Level up table -- local p = {} local params = require('Module:Paramtest') function p._make_table(args) local max_level = 99 local ret = mw.html.create('table') :addClass('wikitable') :addClass('level-up-table') :css( 'width', '100%' ) :tag('tr') :tag('th') :wikitext('Level') :done() :tag('th') :attr('colspan','2') :wikitext('New abilities') :done() :done() :done() local has_freeplay...")
- 01:26, 16 October 2024 Alex talk contribs created page Module:ScaledExperience/doc (Created page with "{{Documentation}} == Usage == Helper module for experience calculations where each action's experience scales linearly with level, such as the genie lamps. == Functions == ===Determine Actions Needed=== These functions return the number of actions required to reach a target goal. The only difference between these four functions is optional usage of a starting or target level instead of an experience value. <pre>xp_to_xp_actions(startingExp, targetExp, scalar, base, inte...")
- 01:26, 16 October 2024 Alex talk contribs created page Module:ScaledExperience (Created page with "local Experience = require( 'Module:Experience' ) local p = {} -- Determine the XP an action gives at a given level function p.action_xp_at_level(level, scalar, base, intercept) return base+(math.max(level-intercept,0)*scalar) end function p.xp_to_xp_actions(startingExp, targetExp, scalar, base, intercept) -- Accumulated exp starts off at whatever amount of exp the player has local accExp = startingExp local accActions = 0 -- Since the amount of exp depends on t...")
- 01:24, 16 October 2024 Alex talk contribs created page Module:Experience/dataunr (Created page with "local ret = {} local total = 0 ret[1] = 0 for i = 1, 125 do total = math.floor(total + i + 300 * math.pow(2, i / 7)) ret[i + 1] = math.floor(total/4) end return ret")
- 01:24, 16 October 2024 Alex talk contribs created page Module:Experience/data (Created page with "local ret = {} local total = 0 ret[1] = 0 for i = 1, 98 do total = math.floor(total + i + 300 * math.pow(2, i / 7)) ret[i + 1] = math.floor(total/4) end return ret")
- 01:24, 16 October 2024 Alex talk contribs created page Module:Experience/doc (Created page with "{{No_documentation}}")
- 01:24, 16 October 2024 Alex talk contribs created page Module:Experience (Created page with "local p = {} local commas_strip = require('Module:Addcommas')._strip local XPAtLevel = mw.loadData('Module:Experience/data') local XPAtLevelUnr = mw.loadData('Module:Experience/dataunr') -- -- Returns lowest needed XP to have required level -- Template:XP -- function p._xp_at_level(level) level = tonumber(level) -- calling tonumber on a string returns nil if not level then return "You must pass numbers as arguments" end -- Level range is 1 to 99 if level...")
- 01:24, 16 October 2024 Alex talk contribs created page Module:Lamp calculator/doc (Created page with "{{No_documentation}}")
- 01:24, 16 October 2024 Alex talk contribs created page Module:Lamp calculator (Created page with "local p = {} local experience = require('Module:Experience') local paramTest = require('Module:Paramtest') local scaledExperience = require('Module:ScaledExperience') local scp = require('Module:SCP')._main local addCommas = require('Module:Addcommas')._add function p.buildTable(skill, itemData) local ret = '' for i, itemTable in ipairs(itemData) do local tabl = mw.html.create('table'):addClass('wikitable'):done() tabl:tag('tr'):tag('th'):wikitext('[[File:'.. it...")
- 01:23, 16 October 2024 Alex talk contribs created page Module:NPCQuery/doc (Created page with "{{No_documentation}}")
- 01:22, 16 October 2024 Alex talk contribs created page Module:NPCQuery (Created page with "-- <pre> --local p = {} --local yesno = require('Module:Yesno') --local params = require('Module:Paramtest') --local commas = require('Module:Addcommas') --function p.main(frame) -- local args = frame:getParent().args -- -- Params and defaults -- local name = params.default_to(args.Monster,'monster') -- -- -- Table row -- --return name -- --return name1 .. ' : ' .. name2 .. ' : ' .. '\n' -- return p._main(name) --end local NPCs = {} function NPCs.NPCisMember(name)...")
- 01:22, 16 October 2024 Alex talk contribs created page Module:ItemDropsLineUpdated/doc (Created page with "{{No_documentation}}")
- 01:22, 16 October 2024 Alex talk contribs created page Module:ItemDropsLineUpdated (Created page with "-- <pre> local p = {} local yesno = require('Module:Yesno') local params = require('Module:Paramtest') local commas = require('Module:Addcommas') local npcs = require('Module:NPCQuery') local raritybg = { ['always'] = '#AFEEEE', ['common'] = '#56E156', ['uncommon'] = '#FFED4C', ['rare'] = '#FF863C', ['very rare'] = '#FF6262', ['random'] = '#FFA3FF', ['varies'] = '#FFA3FF', ['discontinued'] = '#DBFF4C' } local raritysort = { ['always'] = '1', ['common'] = '2'...")
- 01:21, 16 October 2024 Alex talk contribs created page Template:Instructions/doc (Created page with "{{Documentation}} {{Invokes|Instructions}} ==About== This template is used in conjunction with Template:Recipe to create a list of instructions on how to create a specific item. This can be used for anything, but it was built specifically for a subsection under the recipe template. ==Usage== <pre> {{Instructions |step# = Test <!-- The step for the instruction line --> }} </pre> ===Example=== <pre> {{Instructions |step1 = Find the bacon. |step2 = Eat the bacon....")
- 01:20, 16 October 2024 Alex talk contribs created page Template:Instructions (Created page with "<onlyinclude>{{#invoke:Instructions|main}}</onlyinclude><noinclude>{{/doc}}</noinclude>")
- 01:20, 16 October 2024 Alex talk contribs created page Module:Instructions/doc (Created page with "{{No_documentation}}")
- 01:20, 16 October 2024 Alex talk contribs created page Module:Instructions (Created page with "local p = {} local params = require('Module:Paramtest') function p.main(frame) local args = frame:getParent().args local steps_list = {} for i = 1, 10, 1 do local step = args['step'..i] if step and params.has_content(step) then local num = i local stepDetail = step table.insert(steps_list, { num = num, step = stepDetail } ) end end local function make_step_row(num, step) return mw.html.create('tr') :tag('td'):css({['text-align'] =...")
- 01:19, 16 October 2024 Alex talk contribs created page Template:Infobox Shop/doc (Created page with "{{Documentation}} {{Standard infobox parameters}} ==Parameters== ===name=== The name of the shop as seen in the shop interface. ===image=== An image of the shop location. ===release=== The relase date of the shop. ===update=== The update post associated with the release date. ===removal=== (Optional) The removal date of the shop. ===removalupdate=== (Optional) The update post associated with the removal date. ===members=== Whether the shop is members only. ===ic...")
- 01:19, 16 October 2024 Alex talk contribs created page Template:Infobox Shop (Created page with "{{#invoke:Infobox Shop|main}}<noinclude>{{/doc}}</noinclude>")
- 01:19, 16 October 2024 Alex talk contribs created page Module:Infobox Shop/doc (Created page with "{{No_documentation}}")
- 01:18, 16 October 2024 Alex talk contribs created page Module:Infobox Shop (Created page with "-------------------------- -- Module for Template:Infobox Shop -------------------------- local p = {} local onmain = require('Module:Mainonly').on_main local paramtest = require('Module:Paramtest') local infobox = require('Module:Infobox') function p.main(frame) local args = frame:getParent().args local ret = infobox.new(args) ret:defineParams{ { name = 'name', func = 'name' }, { name = 'image', func = 'has_content' }, { name = 'release', func = 'release...")
- 01:17, 16 October 2024 Alex talk contribs created page Template:Infobox NPC/doc (Created page with "{{Documentation}} {{invokes|Infobox NPC}} {{Standard infobox parameters}} ==Parameters== ===name=== The exact name of the NPC. ===image=== An image of the NPC. ===release=== The release date of the NPC. ===update=== The update post associated with the release date. ===removal=== (Optional) The date the NPC was removed. ===removalupdate=== (Optional) The update post associated with the removal date. ===aka=== (Optional) Alternate names for the NPC. ===level=== (O...")
- 01:17, 16 October 2024 Alex talk contribs created page Template:Infobox NPC (Created page with "{{#invoke:Infobox NPC|main}}<noinclude>{{/doc}}</noinclude>")
- 01:16, 16 October 2024 Alex talk contribs created page Module:Infobox NPC/doc (Created page with "{{No_documentation}}")
- 01:16, 16 October 2024 Alex talk contribs created page Module:Infobox NPC (Created page with "-------------------------- -- Module for Template:Infobox NPC ------------------------ local p = {} local onmain = require('Module:Mainonly').on_main local paramtest = require('Module:Paramtest') local infobox = require('Module:Infobox') function p.main(frame) local args = frame:getParent().args local ret = infobox.new(args) ret:defineParams{ { name = 'name', func = 'name' }, { name = 'image', func = 'image' }, { name = 'image_smw', func = { name = image_...")
- 01:15, 16 October 2024 Alex talk contribs created page Template:Infobox Music/doc (Created page with "{{Documentation}} ==Parameters== ===name=== The name of the music track. ===number=== (Optional) The track number when ordered by release date. ===file=== The filename for the audio file, for example "Adventure.ogg". ===release=== The release date of the music track. ===update=== The update post associated with the release date. ===members=== Whether the music track is members only. ===location=== The location where the music track plays. ===hint=== The unlock hi...")
- 01:15, 16 October 2024 Alex talk contribs created page Template:Infobox Music (Created page with "{| class="infobox {{parentitle|{{{name}}}}} infobox-music" |- ! class="infobox-header" colspan="5" | {{#if:{{{name|}}}|[[Music track title::{{{name}}}]]|{{PAGENAME}}}} {{#if:{{{number|}}}|<span style="font-size: 80%;">(#[[Music number::{{{number}}}]])</span>}} |- | class="infobox-padding" colspan="5" | |- | class="infobox-full-width-content infobox-media-player" colspan="5" | {{#if:{{{file|}}}|{{{file}}}|Please add an audio sample!}} |- | class="infobo...")
- 01:15, 16 October 2024 Alex talk contribs created page Module:Infobox Music/doc (Created page with "{{Documentation}} Category handler for Template:Infobox Music.")
- 01:15, 16 October 2024 Alex talk contribs created page Module:Infobox Music (Created page with "-- <pre> -- This will likely be expanded when other infoboxes are converted to Lua -- For now, it will just be a categories handler local p = {} local onmain = require('Module:Mainonly').on_main local yesno = require('Module:Yesno') local empty = require('Module:Paramtest').is_empty local composers = { ['ian t'] = 'Ian Taylor', ['grace d'] = 'Grace Docksey', ['adam b'] = 'Adam Bond', ['stephen l'] = 'Stephen Lord', ['jed s'] = 'Jed Sanderson', ['adam r'] = 'Adam...")
- 01:14, 16 October 2024 Alex talk contribs created page Module:Get drop info/doc (Created page with "{{No_documentation}}")
- 01:09, 16 October 2024 Alex talk contribs created page Template:Quest reward scroll/doc (Created page with "{{documentation}} This template allows you to create a custom-made quest reward scroll. The quest name, reward, quest points and image can be customised. ==Usage== <pre> {{Quest reward scroll |image=<!-- image, preferably 75x75px and without link, e.g. 75x75px|link= --> |quest=<!-- quest name --> |reward=<!-- List of rewards. Whitespace enters do work. --> |qp=<!-- Total quest points after quest --> }} </pre> Note that the <code>qp</co...")
- 01:09, 16 October 2024 Alex talk contribs created page Template:Quest reward scroll (Created page with "<div style="width: 488px; height: 320px; margin: 0 auto; position: relative;"> <span style="position: absolute;">link=</span> <span style="position:absolute; top: 125px; left: 65px; image-rendering: pixelated;">{{{image|75x75px|link=}}}</span> <div style="padding-top: 86px; text-align: center; font-family: runescape; font-size: 16px; color: #37242b; white-space: pre-wrap; line-height: 17px;"> <div sty...")
- 01:07, 16 October 2024 Alex talk contribs created page Template:Looting bag/doc (Created page with "{{documentation}} This template provides basic formatting to display the contents of a looting bag. ==Usage== This template can be used by entering the following onto a relevant page. <pre>{{Looting bag|align=right |Item1 |Item2 |Item3 |Item4 |Item5 |Item6 |Item7 |Item8 |Item9 |Item10 |Item11 |Item12 |Item13 |Item14 |Item15 |Item16 |Item17 |Item18 |Item19 |Item20 |Item21 |Item22 |Item23 |Item24 |Item25 |Item26 |Item27 |Item28 }}</pre> To specify an amount for a stacka...")
- 01:07, 16 October 2024 Alex talk contribs created page Template:Looting bag (Created page with "{{#invoke:Inventory|main|bgType=lootingbag}}<noinclude>{{/doc}}</noinclude>")
- 01:04, 16 October 2024 Alex talk contribs created page Template:Equipment/doc (Created page with "{{documentation}} The '''Equipment''' template mimics the in-game display of equipped items. ==Usage== <pre> {{Equipment|align=left/center/right |buttons = "yes" to show equipment interface buttons (defaults "no" if omitted) |stats = "yes" to show equipment stats (defaults "no" if omitted) |head = Head slot item |cape = Cape slot item |neck = Neck slot item |ammo = Ammo slot item |ammoquantity = Optional: Item quantity |ammo2 = Optional: Second ammo slot item (for use w...")
- 01:04, 16 October 2024 Alex talk contribs created page Template:Equipment (Created page with "{{#invoke:Equipment|main}}<noinclude>{{clear}}{{/doc}}</noinclude>")
- 01:04, 16 October 2024 Alex talk contribs created page Module:Equipment/doc (Created page with "{{documentation}} Module for Template:Equipment")
- 01:03, 16 October 2024 Alex talk contribs created page Module:Equipment (Created page with "-- <pre>Sandbox for testing stuff. Infoked by User:Joeytje50/Module -- Current module being tested: Module:Equipment local p = {} local hasc = require('Module:Paramtest').has_content local itemstats = require('Module:FetchItemStats') local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local GEPrice = require('Module:Exchange')._price -- Parse item string and check if GIF icons are allowed local function parseItem(ret, itemString, eq...")
- 01:03, 16 October 2024 Alex talk contribs created page Template:DropsLine/doc (Created page with "{{Documentation}} {{ToC|right}} The '''DropsLine''' templates are used to list a monster's drops. Three templates are used to form the drop logs: * {{T|DropsTableHead}} - Contains table headers for the top of the drop table * {{T|DropsLine}} - Template for all of the individual drop lines * {{T|DropsTableBottom}} - Contains table footers for the bottom of the drop table ==Predefined and alternate templates== Several predefined templates have been made to assist with s...")
- 01:02, 16 October 2024 Alex talk contribs created page Template:DropsLine (Created page with "<includeonly>{{#if:{{{namenotes|}}}{{{quantitynotes|}}}{{{raritynotes|}}}{{{version|}}}|{{var|_refs_used_|true}}}}{{#invoke:DropsLine|main|dtype=combat|version={{#var:Version}}|smw={{#var:_smw}}}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 01:02, 16 October 2024 Alex talk contribs created page Template:DropsLineSkill/doc (Created page with "{{Documentation}} The '''DropsLineSkill''' templates are used to list drops from various skills. Drops tables should use the following 3 templates: * {{T|DropsTableHead}} - Contains table headers for the top of the drop table * {{T|DropsLineSkill}} - Template for all of the individual drop lines * {{T|DropsTableBottom}} - Contains table footers for the bottom of the drop table See related templates: * {{T|DropsLine}} for monster drops * {{T|DropsLineReward}} for reward...")
- 01:02, 16 October 2024 Alex talk contribs created page Template:DropsLineSkill (Created page with "<includeonly>{{#if:{{{namenotes|}}}{{{quantitynotes|}}}{{{raritynotes|}}}|{{var|_refs_used_|true}}}}{{#invoke:DropsLine|main|dtype={{lc:{{{skill|}}}}}|version={{#var:Version}}|smw={{#var:_smw}}}}</includeonly><noinclude>{{/doc}}</noinclude>")