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:12, 17 October 2024 Alex talk contribs created page Module:GEMW/Most expensive (Created page with "--<nowiki> local arr = require("Module:Array") local Coins = require("Module:Coins")._amount local ExchangeData = require("Module:ExchangeData") local p = {} function p.items(num) local prices = mw.loadJsonData("Module:GEPrices/data.json") local prices_a = {} for k, v in pairs(prices) do if string.sub(k, 1, 1) ~= '%' then table.insert(prices_a, {item=k, price=v or -1}) end end table.sort(prices_a, function(a, b) return a.price > b.price end) return arr.slic...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GEMinMax/doc (Created page with "{{Documentation}} {{Invokes|MinPrice}} {{Invokes|MaxPrice}} {{Requires|Currency}} {{Data|loads=GEPrices/data.json}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GEMinMax (Created page with "-- <nowiki> local prices = mw.loadJsonData('Module:GEPrices/data.json') local _coins = require('Module:Currency')._amount local p = {} local fmap = { wikitable = 'wikitable', wikitablereverse = 'wikitablereverse', table = 'wikitable', t = 'wikitable', rtable = 'wikitablereverse', rt = 'wikitablereverse', bracket = 'bracket', b = 'bracket', backetreverse = 'backetreverse', rb = 'backetreverse', item = 'item', price = 'price', none = 'none' } local formats =...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GemBreakeven/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GemBreakeven (Created page with "-- <pre> -- Implements {{GemBreakeven}} -- Based on https://oldschool.runescape.wiki/w/Module:Coins local p = {} --- Use this to create a formatted string with % -- local function breakeven_probability(uncut_,cut_) -- local math = math -- uncut = tonumber(uncut_) -- cut = tonumber( cut_) -- p0 = uncut/cut -- breakeven_prob = math.floor(10000 * p0)/100 -- return breakeven_prob -- end local function breakeven_level(uncut_,cut_,r_,beta_,gamma_) local m...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GELowAlchs/data.json (Created page with "{ "%LAST_UPDATE%": 1729055258, "%LAST_UPDATE_F%": "16 October 2024 05:07:38 (UTC)", "3rd age amulet": 20200, "3rd age axe": 22000, "3rd age bow": 60000, "3rd age cloak": 34000, "3rd age druidic cloak": 80000, "3rd age druidic robe bottoms": 80000, "3rd age druidic robe top": 80000, "3rd age druidic staff": 80000, "3rd age felling axe": 22000, "3rd age full helmet": 36000, "3rd age kiteshield": 72000, "3rd age longsword": 60000, "3rd age mage hat": 20160,...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GELimits/doc (Created page with "{{Documentation}} <code>main</code> takes a single unnamed argument that is the items name and returns the GE Limit of the item, or 0 if the item is not found. <code>table</code> Generates tables of all the GE Limits, with <code>==</code> sections for ''#'' and each letter.")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GELimits (Created page with "local p = {} local data = mw.loadJsonData('Module:GELimits/data.json') function p.main(frame) local args = frame:getParent().args[1] return data[args] or 0 end function p.table(frame) local sectionString = "#ABCDEFGHIJKLMNOPQRSTUVWXYZ" local bySection = {} for name, _ in pairs(data) do local letter = string.sub(name, 1, 1) if letter ~= '%' then if string.find(sectionString, letter) == nil then letter = "#" end if bySection[letter] == nil then...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GEIDs/data.json (Created page with "{ "%LAST_UPDATE%": 1729055258, "%LAST_UPDATE_F%": "16 October 2024 05:07:38 (UTC)", "3rd age amulet": 10344, "3rd age axe": 20011, "3rd age bow": 12424, "3rd age cloak": 12437, "3rd age druidic cloak": 23345, "3rd age druidic robe bottoms": 23339, "3rd age druidic robe top": 23336, "3rd age druidic staff": 23342, "3rd age felling axe": 28226, "3rd age full helmet": 10350, "3rd age kiteshield": 10352, "3rd age longsword": 12426, "3rd age mage hat": 10342,...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:GEBot dump (Created page with "local p = {} function p.get(frame) return p._get(frame.args[1], frame.args[2]=='yes') end function p._get(offset, allowhistorical) local dpl = [=[ {{#dpl: |namespace=Module |titlematch=Exchange/%% |nottitlematch=Exchange/%%/Data |nottitlematch=Exchange/%%/doc |nottitlematch=Exchange/%%/annotations.json |ordermethod=title |format=,@%%TITLE%%@,, |replaceintitle=/^Exchange\//, |offset=%s }} ]=] dpl = dpl:format(offset) local res = mw.getCurrentFrame():preprocess(dpl)...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Forumheader/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Forumheader (Created page with "-- <nowiki> -- Implements {{Forumheader}} -- -- @todo make types and closures easier on the eye -- @todo add notice to archive old forums to catch when we undelete old forums that aren't archived -- -- Categories added by this module: -- > Category:Redwood Grove -- > Category:Active threads -- > Category:Forums excluded from the main page -- > Category:Forum archives/$type -- > Category:Forum archives with invalid type parameter -- > [[Category:Forum...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Format equipment stat/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Format equipment stat (Created page with "local p = {} function p.main(frame) return p.format(frame:getParent().args[1]) end function p.format(_arg, default) local arg = tonumber(_arg) if not arg then return default or _arg end if arg < 0 then return tostring(arg) end return '+'..arg end return p")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Format eq stat/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Feedback (Created page with "local pt = require('Module:Paramtest') local yn = require('Module:Yesno') local p = {} p.yn=yn function p.main(frame) return p._main(frame:getParent().args) end function p._main(args) local isResolved = false if pt.has_content(args.resolved) then isResolved = yn(args.resolved) end local stars = tonumber(args.rating) or 0 stars = math.min(math.floor(stars), 5) local comment = pt.default_to(args.feedback, "''No comment provided''") local id = pt.default_to(args....")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Farming yield calculator (Created page with "local ssc = require('Module:Skilling success chart') local yesno = require('Module:Yesno') local p = {} local compostLives = { None = 3, Compost = 4, Supercompost = 5, Ultracompost = 6 } local diary = { ['None'] = 0, ['Kandarin - Medium (5%)'] = 10, ['Kandarin - Hard (10%)'] = 17, ['Kandarin - Elite (15%)'] = 25, ['Kourend and Kebos - Hard (5%)'] = 10 } function p.main(frame) local args = frame.args local name = args.name local pic = args.pic or (name ....")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Family tree/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Family tree/data (Created page with "local LINE_COLOUR = '#6699CC' local SOLID = '1px solid ' .. LINE_COLOUR local DASHED = '1px dashed ' .. LINE_COLOUR -- Single characters used for creating "blocks", as they will be called local borders = { -- Single lines ['-'] = { top = nil, right = SOLID, bottom = nil, left = SOLID }, ['!'] = { top = SOLID, right = nil, bottom = SOLID, left = nil }, ['~'] = { top = nil, right = DASHED, bottom = nil, left = DASHED }, [':'] = { top = DASHED, right = nil, bottom =...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Family tree (Created page with "--[[ Implements {{Family tree}} In this module and the template, top, right, bottom, left refer to the location of the line on a cross: -T- L#R -B- --]] local p = {} local borders = mw.loadData('Module:Family tree/data') -- Main function function p.main(frame) local args = frame:getParent().args local cells = {} for i, v in ipairs(args) do -- Every param is unnamed, so needs trimming local v_x = mw.text.trim(v) -- Assume all blank parameters (trimmed to 0 len...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Experience/elitedataunr (Created page with "return { [1] = 0, [2] = 830, [3] = 1861, [4] = 2902, [5] = 3980, [6] = 5126, [7] = 6390, [8] = 7787, [9] = 9400, [10] = 11275, [11] = 13605, [12] = 16372, [13] = 19656, [14] = 23546, [15] = 28138, [16] = 33520, [17] = 39809, [18] = 47109, [19] = 55535, [20] = 64802, [21] = 77190, [22] = 90811, [23] = 106221, [24] = 123573, [25] = 143025, [26] = 164742, [27] = 188893, [28] = 215651, [29] = 245196, [30] = 277713, [31] = 316311, [32] = 358547...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Experience/elitedata (Created page with "return { [1] = 0, [2] = 830, [3] = 1861, [4] = 2902, [5] = 3980, [6] = 5126, [7] = 6390, [8] = 7787, [9] = 9400, [10] = 11275, [11] = 13605, [12] = 16372, [13] = 19656, [14] = 23546, [15] = 28138, [16] = 33520, [17] = 39809, [18] = 47109, [19] = 55535, [20] = 64802, [21] = 77190, [22] = 90811, [23] = 106221, [24] = 123573, [25] = 143025, [26] = 164742, [27] = 188893, [28] = 215651, [29] = 245196, [30] = 277713, [31] = 316311, [32] = 358547...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:ExchangeDefault/Sandbox (Created page with "-- <pre> -- Default view for {{ExchangeItem}} for use on Exchange ns mw.pages -- -- Use of this via #invoke is deprecated and will eventually be removed -- This is intended for use by Module:Exchange -- local p = {} -- imports local exchange = require( 'Module:Exchange/Sandbox' ) local excgdata = require( 'Module:ExchangeData' )._main local round = require( 'Module:Number' )._round local timeago = require( 'Module:TimeAgo' )._ago local yesno = require( 'Module:Yesn...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:ExchangeDefault/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:ExchangeDefault (Created page with "-- <pre> -- Default view for {{ExchangeItem}} for use on Exchange ns mw.pages -- -- Use of this via #invoke is deprecated and will eventually be removed -- This is intended for use by Module:Exchange -- local p = {} -- imports local exchange = require( 'Module:Exchange' ) local excgdata = require( 'Module:ExchangeData' )._main local round = require( 'Module:Number' )._round local timeago = require( 'Module:TimeAgo' )._ago local yesno = require( 'Module:Yesno' ) fu...")
- 01:12, 17 October 2024 Alex talk contribs created page Module:ExchangeData/doc (Created page with "{{No documentation}}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:Equipment Comparison (Created page with "-- <nowiki> local p = {}")
- 01:12, 17 October 2024 Alex talk contribs created page Module:EmberFantasy/sandbox/Slottable (Created page with "-- <pre> require('Module:Mw.html extension') local p = {} local format = require('Module:Format equipment stat').format --for formatting the stats with + and - symbols on output local p2pIcon = 'frameless|link=Pay-to-play' --these icons are for the later members/f2p stars local f2pIcon = 'frameless|link=Free-to-play' local stats = {'astab', 'aslash', 'acrush', 'amagic', 'arange', 'dstab', 'dslash', 'dcrush', 'dm...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Wikieditor-toolbar-help-content-heading5-syntax (Created page with "=====Heading text=====")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Wikieditor-toolbar-help-content-heading4-syntax (Created page with "====Heading text====")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Wikieditor-toolbar-help-content-heading3-syntax (Created page with "===Heading text===")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Wikieditor-toolbar-help-content-heading2-syntax (Created page with "==Heading text==")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Welcome-message-user (Created page with " {| class="messagebox" style="width:85%; padding:5px; padding-right:1px" |75px|center|link= |- |Hello, '''Welcome-message-user''', and welcome to the '''Old School RuneScape Wiki'''! We're happy to see new editors making contributions. Here are some links you may find helpful: |- | *A list of policies on our wiki *Image policy guidelines *Editing style guide *Sp...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Weirdgloop-mobile-frontend-copyright (Created page with "Content on this site is licensed under $1; <a href="https://meta.weirdgloop.org/w/Project:Copyrights">additional terms apply</a>. <br /><i>RuneScape</i> and <i>RuneScape Old School</i> are the trademarks of <a href="http://jagex.com">Jagex Limited</a> and are used with the permission of Jagex.")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Weirdgloop-copyright (Created page with "Content on this site is licensed under $1; <a href="https://meta.weirdgloop.org/w/Project:Copyrights">additional terms apply</a>. <br /><i>RuneScape</i> and <i>RuneScape Old School</i> are the trademarks of <a href="http://jagex.com">Jagex Limited</a> and are used with the permission of Jagex.")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-wikitext-warning-link (Created page with "rsw:Help:Editing/Source mode basics")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-welcomedialog-title (Created page with "{{GENDER:$1|Welcome}} to the $2")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-template-tools-definition.json (Created page with "{ "citationNeeded": [ { "title": [ "Fact", "Citation needed" ], "params": { "encapsulate": "1" } } ] }")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-preference-betatempdisable (Created page with "Disable the visual editor")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-help-link (Created page with "rsw:Help:Editing/VisualEditor basics")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-cite-tool-name-twitter (Created page with "Twitter")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-cite-tool-name-news (Created page with "Newspost")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Visualeditor-cite-tool-definition.json (Created page with "[ { "name": "twitter", "icon": "ref-cite-web", "template": "PlainCiteTwitter" }, { "name": "news", "icon": "ref-cite-news", "template": "PlainCiteNews" } ]")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/vectortabs.less (Created page with ":root { // for more granular control for dark mode --vector-tab-background: var(--body-background-color); --vector-tab-background--hover: var(--body-mid); --vector-tab-link-color: var(--background-link-color); // uses --background-link-color (#52351e) --watch-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='transparent' stroke='%2352351e' stroke-width='.8' d='m8.1 1.1 2.2 4.5 4.8.7-3.5 3.4.9 4.8L8 12.2l...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/vectorsidebar.less (Created page with "// sidebar #mw-panel { padding-top: 2.5em; } // sidebar links div#mw-panel .vector-menu-portal { .vector-menu-heading { color: var(--background-text-color); font-weight: bold; background: none; } .vector-menu-content li { a, a:visited { color: var(--background-link-color); } } } // logo #p-logo { filter: drop-shadow(0 2px 5px rgba(0,0,0,.25)); margin: -1.5em 0 0; } Forum:Add a better Discord link to the sidebar: #n-Discord a { color: @...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/vectorsearch.less (Created page with ":root { // use --text-color (#000) --searchbutton-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M12.2 13.6a7 7 0 1 1 1.4-1.4l5.4 5.4-1.4 1.4zM3 8a5 5 0 1 0 10 0A5 5 0 0 0 3 8z'/%3E%3C/svg%3E"); } * * codex version of search box (ported from vector-2022): .vector-search-box { font-size: 0.8125em; // 12px, default is .8em min-width: unset; // is 20em, guarantees tab...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/vectormenu.less (Created page with ":root { --personal-links-bg: var(--body-main); // --background-text-color (#444) fill --arrow-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M11.05 3.996l-.965-1.053-4.035 3.86-3.947-3.86L1.05 3.996l5 5 5-5' fill='%23444'/%3E%3C/svg%3E"); } .vector-menu-dropdown { .vector-menu-heading { background-color: var(--vector-tab-background); padding: 1em 0.75em 0.6923em; // 0.6923em is roug...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/vectorfooter.less (Created page with ":root { --footer-license-small: ; --footer-license: ; --footer-wgl-small: ; --footer-wgl: ; }: /* // Replacing footer icons. // License icon #footer-copyrightico { img { display: none; } a:before { background: var(--footer-license-small); background-size: 88px; content: ""; width: 88px; height: 31px; display: inline-block; @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { background-image: var(--footer-license); } }...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/transcripts.less (Created page with "=========================== Transcript lists ===========================: .ns-120 .mw-parser-output, .transcript { // no left-margin for the outermost list, because that already gets extra padding without an alignment marker. > ul { margin: 5px 0 0 0; // make margins for ul and ol consistent for indented lists ul, ol { margin: 5px 0 0 15px; } // need to exclude TOC &, ul, ol { list-style: none; // alignment markers for each of the lists...")
- 01:11, 17 October 2024 Alex talk contribs created page MediaWiki:Vector.less/toc.less (Created page with "======================== Template:ToC ========================: :root { --toc-bg: @BODY_LIGHT; --toc-title-bg: @infobox-header-color; --toc-border-color: @infobox-border-color; --toc-list-border-color: @infobox-border-color; } .toc { font-size: .9em; background: var(--toc-bg); margin-top: 1em; padding: 0; border-color: var(--toc-border-color); box-shadow: @box-shadow; clear: left; .toctitle { background: var(--toc-title-bg); paddi...")