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:00, 17 October 2024 Alex talk contribs created page Module:Calc/User:Galvagornus (Created page with "local p = {} function expr(x) x = tostring(x) local expr_good, expr_val = pcall(mw.ext.ParserFunctions.expr, x) if expr_good then return tonumber(expr_val) end return nil end -- from WP function choose(n,k) if k < 0 or k > n then return 0 end if k == 0 or k == n then return 1 end k = math.min(k, n-k) -- symmetry c = 1 for i=0,k-1 do c = c * (n-i) / (k - i) end return c end function flavourText(x) local flavourTexts = { { -1, 1, "You are some s...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:BoostedDropsLine/Sandbox (Created page with "local p = {}; local lang = mw.language.getContentLanguage() local rarity_class = { { 1, 'table-bg-blue' }, { 1/25, 'table-bg-green' }, { 1/99.99, 'table-bg-yellow' }, { 1/999.99, 'table-bg-orange' }, { 1/9999999, 'table-bg-red' } } function get_rarity_class(val) for i,v in ipairs(rarity_class) do curr = v if val >= v[1] then break end end return curr[2] end function sigfig(n, f) f = math.floor(f-1) if n == 0 then return 0 end local m = math.floor(m...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Blast Furnace Gold calculator/doc (Created page with "{{No documentation}}")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Blast Furnace Gold calculator (Created page with "local coins = require('Module:Coins')._amount local lang = mw.getContentLanguage() function fnum(x) if type(x) == 'number' then return lang:formatNum(x) end return x end local p = {} function p.main(frame) local args = frame:getParent().args --get args from calc input local drop = tonumber(args.Drop) --set up basic variables from args local hop = tonumber(args.Hop) local sixty = args.Sixty local dropticks26 = math.ceil(26/drop) local dropticks22 = math.c...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Blackjack stun calculator (Created page with "local p = {} function p.main(frame) local args = frame:getParent().args return p.calculate(tonumber(args.max_hit), tonumber(args.hitpoints)) end function p.calculate(max_hit, hitpoints) local chance = 0.0 for hit = 0,max_hit do if hit > hitpoints then chance = chance + (2*hit-hitpoints)/(2*hit+2)/(1+max_hit) else chance = chance + hit/(2*hitpoints+2)/(1+max_hit) end end return "On a successful hit, the stun chance with a max hit of '''" .. tos...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Bestiary/Slayer assignments (Created page with "local p = {} local slayerCat = {} slayerCat["AB"]={"Aberrant spectre", "Abyssal demon", "Adamant dragon", "Ankou", "Aviansie", "Bandit", "Banshee", "Basilisk", "Bat", "Bear", "Bird", "Black demon", "Black dragon", "Black Knights", "Bloodveld", "Blue dragon", "Boss", "Brine rat", "Bronze dragon"} slayerCat["CD"]={"Catablepon", "Cave bug", "Cave crawler", "Cave horror", "Cave kraken", "Cave slime", "Chaos druid", "Cock...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Bestiary/Sandbox (Created page with "local p = {} local yesno = require('Module:Yesno') local pt = require('Module:Paramtest') local enum = require('Module:Enum') local pagelisttools = require('Module:PageListTools') local avg = require('Module:Average_drop_value/Sandbox') local curr = require('Module:Currency')._amount local pageswithcats = pagelisttools.pageswithcats local smwstats = {} -- Formats a table header function p.header(tbl, verbose) local tr = tbl:tag('tr') :tag('th'):addClass('u...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Barrows item repair calculator/doc (Created page with "{{No documentation}}")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Barrows item repair calculator (Created page with "local p = {} local coins = require('Module:Coins')._amount local itemCost = { {'Helmet', 60000}, {'Body', 90000}, {'Legs', 80000}, {'Weapon', 100000}, } function p.buildTable(npcCost, smithingCost) local ret = mw.html.create('table'):addClass('wikitable align-center-1'):done() ret:tag('tr'):tag('th'):wikitext( '<small>Cost to repair<br/>Barrows equipment</small>'):done() :tag('th'):wikitext('NPC'):done() :tag('th'):wikitext('Player-owned house<br/...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Barrows calculator/doc (Created page with "{{No documentation}}")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Barrows calculator (Created page with "local p = {} local coins = require('Module:Coins')._amount local gePrice = require('Module:Exchange')._price local paramTest = require('Module:Paramtest') local yesNo = require('module:Yesno') local brothersOrder = { 'Ahrim', 'Dharok', 'Guthan', 'Karil', 'Torag', 'Verac' } local barrowsEquipment = { ['Ahrim'] = {"Ahrim's hood", "Ahrim's robetop", "Ahrim's robeskirt", "Ahrim's staff"}, ['Dharok'] = {"Dharok's helm", "Dharok's platebody", "Dharok's platelegs", "Dharok'...")
- 01:00, 17 October 2024 Alex talk contribs created page Module:Average drop value/Sandbox (Created page with "local curr = require('Module:Currency')._amount local dpl = require('Module:DPLlua') local geprices = mw.loadJsonData('Module:GEPrices/data.json') local p = {} -- TODO move to helper function local a_an_arr = { a = true, e = true, i = true, o = true, u = true } function a_an(x) local _x = mw.text.truncate(string.lower(x), 1, '') if a_an_arr[_x] then return 'an' end return 'a' end function calcValue(item, lowqty, highqty, rarity, rolls, alchprice, options)...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:Arceuus library book calculator/doc (Created page with "{{documentation}} {{:User:Faison/Template/Invokes|page=Calculator:Arceuus_library_book/Template}} {| class="wikitable" !Function !Type !Use |- |p.main(frame) |table |The main function to run if invoked from a template that is the results template for a calculator.<br> Valid arguments from the calculator: <code>skill = 'Magic' or 'Runecraft', inputType/targetType = 'Level' or 'Experience', currentLevel/targetLevel = 1 – 126, currentExperience/targetExperience = 1...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:Arceuus library book calculator (Created page with "local p = {} local addCommas = require('Module:Addcommas')._add local experience = require('Module:Experience') local scaledExperience = require('Module:ScaledExperience') local scp = require('Module:SCP')._main function p.buildTable(skill, itemData) local ret = mw.html.create('table'):addClass('wikitable'):done() ret:tag('tr'):tag('th'):wikitext('link=' .. itemData.link .. ' ' .. itemData.name .. ' require...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:ApocalypseBoostedDrop (Created page with "local p = {}; local lang = mw.language.getContentLanguage() local rarity_class = { { 1, 'table-bg-blue' }, { 1/25, 'table-bg-green' }, { 1/99.99, 'table-bg-yellow' }, { 1/999.99, 'table-bg-orange' }, { 1/9999999, 'table-bg-red' } } function get_rarity_class(val) for i,v in ipairs(rarity_class) do curr = v if val >= v[1] then break end end return curr[2] end function sigfig(n, f) f = math.floor(f-1) if n == 0 then return 0 end local m = math.floor(m...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:Ammo cost efficiency (Created page with "-- <nowiki> local p = {} local gep = mw.loadJsonData('Module:GEPrices/data.json') local curr = require('Module:Currency')._amount local yesNo = require('Module:Yesno') function coins(x) return curr(string.format('%.2f', x), 'coins') end function p.main(frame) return p._main(frame.args) end function p._main(args) mw.logObject(args) local UsingBlowpipe = yesNo(args['UsingBlowpipe']) local ScalePrice = gep['Zulrah\'s scales'] local AttackSpeed = args['AttackSpeed']...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:Abyssal pearls (Created page with "-- -- Invoked by Calculator:Abyssal pearls/Template -- Implements Calculator:Template/Abyssal_pearls -- local p = {} local paramTest = require('Module:Paramtest') local addCommas = require('Module:Addcommas')._add local yesNo = require('Module:Yesno') function p.invoke_main(frame) return p.main(frame:getParent().args) end function p.main(args) local pearls, goal, pouchesOwned, shop = paramTest.defaults{ { tonumber(args.pearls), 0 }, { tonumber(args.goal), 0 },...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:@/doc (Created page with "{{Documentation}} This module is used by {{tl|Reply to}} to trigger a notification to one or several registered user(s) you are replying to in a discussion. ==Usage from wikitext== This module cannot be used directly from wikitext. Please use the {{tl|Reply to}} template instead. ==Usage within templates== <nowiki>{{#invoke:@|replyto|<noinclude></nowiki>example=''example name''<nowiki></noinclude></nowiki>|max=''maximum number of names''}}")
- 00:59, 17 October 2024 Alex talk contribs created page Module:@ (Created page with "local p = {} local function makeError(msg) msg ='Error in Template:@: ' .. msg return mw.text.tag('strong', {['class']='error'}, msg) end function p.replyto(frame) local origArgs = frame:getParent().args local args = {} local maxArg = 1 local usernames = 0 for k, v in pairs(origArgs) do if type(k) == 'number' then if mw.ustring.match(v,'%S') then if k > maxArg then maxArg = k end usernames = usernames + 1 local title = mw.title.new(v) if...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:200mxp/doc (Created page with "{{No documentation}}")
- 00:59, 17 October 2024 Alex talk contribs created page Module:200mxp/data (Created page with "-- skill = all, im, uim, hcim return { ['attack'] = {502, 80, 13, 17}, ['defence'] = {406, 66, 11, 16}, ['strength'] = {1400, 245, 15, 19}, ['hitpoints'] = {1094, 243, 13, 11}, ['ranged'] = {1497, 209, 12, 8}, ['prayer'] = {248, 10, 1, 2}, ['magic'] = {500, 30, 5, 2}, ['cooking'] = {3392, 89, 6, 21}, ['woodcutting'] = {692, 94, 15, 11}, ['fletching'] = {619, 22, 2, 3}, ['fishing'] = {315, 42, 7, 6}, ['firemaking'] = {914, 315, 63, 92}, ['crafting'] = {459, 1...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:200mxp (Created page with "-- <pre> local p = {} local lookuptable = require("Module:200mxp/data") local gamemodeindex = { ["all"] = 1, ["im"] = 2, ["uim"] = 3, ["hcim"] = 4 } local function lookup(skill,gamemode) local info = lookuptable[skill] if info == nil then return 'Invalid {{{1}}} param' elseif skill=='update' then return info else return info[gamemodeindex[gamemode] or 1] end end function p.lookup(frame) local args = frame:getParent().args local skill = string.lower(...")
- 00:59, 17 October 2024 Alex talk contribs created page Module:$ (Created page with "local p = {} function p.serialize(frame) return mw.text.jsonEncode(frame:getParent().args) end function p.deserialize(args) local out = {} for k, v in pairs(args) do out[k] = mw.text.jsonDecode(v) end return out end return p")
- 23:36, 16 October 2024 Eq talk contribs created page File:Neck slot.png
- 23:36, 16 October 2024 Eq talk contribs uploaded File:Neck slot.png
- 18:15, 16 October 2024 Alex talk contribs deleted MediaWiki:Common.less (content was: "/* ============================================================================= * This is the root Less file that is parsed to produce MediaWiki:Common.css. * * These styles will be applied to all skins (desktop and mobile). * ----------------------------------------------------------------------------- * Less documentation: <http://lesscss.org/features/> * Gadget:...", and the only contributor was "Alex" (talk))
- 18:15, 16 October 2024 Alex talk contribs created page MediaWiki:Common.less (Created page with "/* ============================================================================= * This is the root Less file that is parsed to produce MediaWiki:Common.css. * * These styles will be applied to all skins (desktop and mobile). * ----------------------------------------------------------------------------- * Less documentation: <http://lesscss.org/features/> * Gadget: <https://meta.weirdgloop.org/w/MediaWiki:Gadget-Less.js> * Core Less JS:...")
- 16:45, 16 October 2024 Alex talk contribs created page File:Music.png
- 16:45, 16 October 2024 Alex talk contribs uploaded File:Music.png
- 16:35, 16 October 2024 Alex talk contribs created page Template:Music track list/doc (Created page with "{{Documentation}} This template can be used to generate a list of music tracks based on a Semantic MediaWiki query. It takes two optional parameters, but if these are not speicfied the output will simply return a ''full'' list of ''all'' music tracks in the game. A category of music tracks can be specified through the <code>category</code> parameter. This takes any wikilink or property format like SMW queries do. For example {{t|Music track list|category=<nowiki>Cate...")
- 16:35, 16 October 2024 Alex talk contribs created page Template:Music track list (Created page with "<includeonly>{{#ask: Category:Music tracks {{#if:{{{category|}}}|{{{category}}}}} {{#if:{{{prefix|}}}|[[~{{#replace:{{{prefix}}}|,|*{{!}}{{!}}~}}*]]}} |?#=Name |?Unlock hint=Unlock details |?Music duration=Duration |?Music track=Play track |format=table |headers=plain |limit=5000 |class=wikitable lighttable sortable }}</includeonly><noinclude>{{/doc}}</noinclude>")
- 16:35, 16 October 2024 Alex talk contribs created page Template:Music track map/doc (Created page with "{{Documentation}} This template can be used on Map pages to create a music track map. This template will include a notice about the function of the page, as well as providing the relevant categories and SMW properties to the page. The first unnamed parameter must be the coordinates for the polygon indicating the music track area. == Example == <pre>{{Music track map |songs=Dreamstate |files=File:Dreamstate.ogg |x=1760|y=5088|plane=2 |align=right|[ [ [1728,5056],[1728,5...")
- 16:35, 16 October 2024 Alex talk contribs created page Template:Music track map (Created page with "<includeonly>{{#if:{{{1|}}}|{{#tag:mapframe |{ "type": "FeatureCollection", "features": [{{#vardefineecho:geoJSON|{ "type": "Feature", "geometry": { "type": "Polygon", "coordinates": {{{1}}} }, "properties": { "mapID": {{{mapID|-1}}}, "plane": {{{plane|0}}} } } }}] } |width={{{width|300}}} |height={{{height|300}}} |zoom={{{zoom|2}}} |mapid={{{mapID|-1}}} |plane={{{plane|0}}} |x={{{x|3200}}} |y={{{y|3200}}} |align={{{align|center}}} |frameless={{#...")
- 16:35, 16 October 2024 Alex talk contribs created page Map:Lumbridge music (Created page with "{{Music track map|[[[3136,3136],[3136,3200],[3133,3200],[3133,3204],[3134,3204],[3134,3205],[3135,3205],[3135,3206],[3136,3206],[3136,3207],[3137,3207],[3137,3208],[3138,3208],[3138,3209],[3139,3209],[3139,3210],[3140,3210],[3140,3211],[3141,3211],[3141,3212],[3142,3212],[3142,3213],[3143,3213],[3143,3214],[3144,3214],[3144,3215],[3145,3215],[3145,3216],[3146,3216],[3146,3267],[3143,3267],[3142,3268],[3140,3268],[3138,3270],[3138,3275],[3139,3276],[3139,3280],[3138,3281]...")
- 16:25, 16 October 2024 Alex talk contribs created page File:Map region Zoom 0.png
- 16:25, 16 October 2024 Alex talk contribs uploaded File:Map region Zoom 0.png
- 16:24, 16 October 2024 Alex talk contribs uploaded a new version of File:OSRS Layers of Map creation example.png
- 16:20, 16 October 2024 Alex talk contribs created page File:OSRS Layers of Map creation example.png
- 16:20, 16 October 2024 Alex talk contribs uploaded File:OSRS Layers of Map creation example.png
- 16:20, 16 October 2024 Alex talk contribs created page File:Map region Zoom 2.png
- 16:20, 16 October 2024 Alex talk contribs uploaded File:Map region Zoom 2.png
- 16:20, 16 October 2024 Alex talk contribs created page File:Map region Zoom 3.png
- 16:20, 16 October 2024 Alex talk contribs uploaded File:Map region Zoom 3.png
- 16:20, 16 October 2024 Alex talk contribs created page File:Map tile Zoom -1.png
- 16:20, 16 October 2024 Alex talk contribs uploaded File:Map tile Zoom -1.png
- 16:19, 16 October 2024 Alex talk contribs created page File:Map tile Zoom 0.png
- 16:19, 16 October 2024 Alex talk contribs uploaded File:Map tile Zoom 0.png
- 16:19, 16 October 2024 Alex talk contribs created page File:Map tile Zoom 1.png
- 16:19, 16 October 2024 Alex talk contribs uploaded File:Map tile Zoom 1.png
- 16:19, 16 October 2024 Alex talk contribs created page File:Map tile Zoom 3.png