User contributions for Orashgle
From Downtime Wiki
25 April 2025
- 03:5103:51, 25 April 2025 diff hist +605 N Module:Random Created page with "local p = {} local seeded local randomseed = math.randomseed local random = math.random function p.random( m, n ) if not seeded then p.seed() end return random( n and m or m and 1 or 0, n or m or 1 ) end function p.seed( seed ) randomseed( seed or ( os.time() + os.clock() * 1000000000 ) ) -- First few values of seed is not guaranteed to be random on some platforms random() random() seeded = true end function p.main( frame ) local m = tonumber( frame.a..."
- 03:5103:51, 25 April 2025 diff hist +1,071 N Module:Text Created page with "-- Source: https://phabricator.wikimedia.org/diffusion/ELUA/browse/master/includes/Engines/LuaCommon/lualib/mw.text.lua local p = {} function p.gsplit( text, pattern, plain ) local s, l = 1, text:len() return function () if s then local e, n = text:find( pattern, s, plain ) local ret if not e then ret = text:sub( s ) s = nil elseif n < e then -- Empty separator! ret = text:sub( s, e ) if e < l then..."
- 03:5003:50, 25 April 2025 diff hist +23,435 N Bow Created page with "{{For|the ranged weapon of a similar name|Crossbow}} {{For|other uses|Bow (disambiguation)}} {{Infobox item | group = Bow | 1-1 = Bow.png | group2 = Pulled (state 0) | 2-1 = Bow (Pull 0).png | group3 = Pulled (state 1) | 3-1 = Bow (Pull 1).png | group4 = Pulled (state 2) | 4-1 = Bow (Pull 2).png | invimage = Bow | renewable = Yes | durability = 384 | stackable = No }} A '''bow''' is a ranged weapon crafted with sticks and string that shoots arrows. =..."
- 03:5003:50, 25 April 2025 diff hist +787 N Category:Documentation pages Created page with "These pages are used for documentation. Category:Templates cs:Kategorie:Dokumentační stránky šablon de:Kategorie:Vorlagendokumentation es:Categoría:Páginas de documentación fr:Catégorie:Pages de documentation it:Categoria:Pagine di documentazione ja:カテゴリ:解説ページ ko:분류:설명문서 페이지 lzh:分類:案文 nl:Categorie:Documentatiepagina's pl:Kategoria:Szablony dokumentacji pt:Categoria:Página..." current
- 03:4603:46, 25 April 2025 diff hist +968 N Module:TSLoader Created page with "local p = {} local static = require( 'Module:Static' ) if not static.TSLoader then static.TSLoader = {} end function p.call( name ) if not name then return nil end if not static.TSLoader.loadedTS then static.TSLoader.loadedTS = {} end local pagename = mw.title.getCurrentTitle() if not static.TSLoader.loadedTS[ pagename ] then static.TSLoader.loadedTS[ pagename ] = {} end if not name:find( '^%w*:' ) then name = 'Template:' .. name:sub( 1, 1 ):upper() ....."
- 03:4503:45, 25 April 2025 diff hist +157 N Module:Static Created page with "-- Source: https://runescape.wiki/w/Module:Static local mwHtml = getmetatable( mw.html.create() ) mwHtml._static = mwHtml._static or {} return mwHtml._static"
- 03:4503:45, 25 April 2025 diff hist +1,422 N Module:Documentation/doc Created page with "{{documentation header}} <!-- Documentation here --> This module implements {{tl|Documentation}}. == Dependencies == * Module:ProcessArgs * Module:Static * Module:TSLoader * mw:extension:TemplateStyles: Module:Documentation/styles.css <includeonly> <!-- Template categories/interwiki here--> cs:Modul:Documentation de:Modul:Dokumentation es:Módulo:Documentation fr:Module:Documentation it:Modulo:Documentazione ja:モジュール:..." current
- 03:4503:45, 25 April 2025 diff hist +13,772 N Module:Documentation Created page with "local p = {} -- Load modules (language wikis exclusive) -- ... -- Customizable strings local i18n = { -- default settings, change when necessary defaultDocPage = 'doc', -- documentation page suffix defaultSandboxPage = 'sandbox', -- sandbox page suffix defaultTestCasePage = 'testcases', -- testcases page suffix defaultPreload = 'Template:Documentation/preload', -- page that stores qualified documentation page contents defaultStyles = 'Module:Documentation/styles...."
- 03:4403:44, 25 April 2025 diff hist +165 N Template:Documentation Created page with "<includeonly>{{#invoke: documentation | page }}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwikis on the documentation page! --> </noinclude>" current
- 03:4403:44, 25 April 2025 diff hist +163 N Template:Crafting usage Created page with "<includeonly>{{#invoke: Crafting usage | dpl }}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page --> </noinclude>"
- 03:4303:43, 25 April 2025 diff hist +771 N Module:ProcessArgs Created page with "local p = {} function p.norm( origArgs ) if type( origArgs ) ~= 'table' then origArgs = mw.getCurrentFrame():getParent().args end local args = {} for k, v in pairs( origArgs ) do v = mw.text.trim( tostring( v ) ) if v ~= '' then args[k] = v end end return args end function p.merge( origArgs, parentArgs, norm ) if type( origArgs ) ~= 'table' then norm = origArgs local f = mw.getCurrentFrame() origArgs = f.args parentArgs = f:getParent().args..."
- 03:4303:43, 25 April 2025 diff hist +8,603 N Module:Recipe table Created page with "local m = {} local i18n = { headingDescription = 'Description', headingIngredients = 'Ingredients', headingName = 'Name', headingRecipe = '$1 recipe', moduleSlot = Module:Inventory slot, moduleUi = Module:UI, separator = ' +', setSeparator = ' or', tableDescription = '$1 recipes', } local slot = require( i18n.moduleSlot ) local prefixes = slot.i18n.prefixes --[[Merges a list, or inserts a string or table into a table --]] local function..."
- 03:4303:43, 25 April 2025 diff hist +13,204 N Module:Inventory slot Created page with "local p = {} local i18n = { filename = 'Invicon $1', legacyFilename = 'Grid $1.png', modLink = 'Mods/$1/$2', moduleAliases = Module:Inventory slot/Aliases, moduleRandom = Module:Random, -- List of special prefixes which should be handled by -- other modules (such as being moved outside links) prefixes = { any = 'Any', matching = 'Matching', damaged = 'Damaged', unwaxed = 'Unwaxed', }, suffixes = { be = 'BE', lce = 'LCE', }, } p.i18n = i18n..."
- 03:4203:42, 25 April 2025 diff hist +1,396 N Module:Crafting/doc Created page with "{{documentation header}} <!-- Documentation here --> This module implements {{tl|crafting}}. Parent arguments are automatically merged with directly passed arguments (the latter overwriting the former). == Dependencies == * Module:Inventory slot * Module:Recipe table * Module:ProcessArgs == See also == {{module recipe see also}} <includeonly> <!-- Template categories/interwiki here --> cs:Modul:Crafting de:Modul:Herstellen es:Módulo:Fabricació..." current
- 03:4203:42, 25 April 2025 diff hist +4,919 N Module:Crafting Created page with "local p = {} local i18n = { moduleArgs = Module:ProcessArgs, moduleRecipe = Module:Recipe table, moduleSlot = Module:Inventory slot, moduleAliases = Module:Inventory slot/Aliases, type = 'Crafting' } p.i18n = i18n local slot = require( i18n.moduleSlot ) local recipeTable = require( i18n.moduleRecipe ).table local aliases = mw.loadData( i18n.moduleAliases ) local cArgVals = { 'A1', 'B1', 'C1', 'A2', 'B2', 'C2', 'A3', 'B3', 'C3' } p.cArgVals = cArgVa..."
- 03:4003:40, 25 April 2025 diff hist +1,370 N Module:Crafting usage/doc Created page with "{{documentation header}} <!-- Documentation here --> This module implements {{t|crafting usage}}. == Dependencies == * Module:Crafting <includeonly> <!-- Module categories/interwiki here --> cs:Modul:Crafting usage es:Módulo:Crafting usage fr:Module:Utilisation fabrication it:Modulo:Utilizzo nella fabbricazione ja:モジュール:Crafting usage ko:모듈:Crafting usage lzh:模組:Crafting usage nl:Module:Vervaardigingsgebruik pt:..."
- 03:3903:39, 25 April 2025 diff hist +9,029 N Module:Crafting usage Created page with "--Test page listing important test cases, used to preview before saving any changes. Template:Crafting_usage/test_page -- local p = {} local titleText = mw.title.getCurrentTitle().text local i18n = { emptyCategory = 'Empty crafting usage', moduleCrafting = Module:Crafting, moduleSlot = Module:Inventory slot, moduleAliases = Module:Inventory slot/Aliases, moduleText = Module:Text, templateCrafting = 'Crafting', } p.i18n = i18n local text = re..."
- 03:2503:25, 25 April 2025 diff hist +52 MediaWiki:Sidebar No edit summary current
- 03:2103:21, 25 April 2025 diff hist +47 Survival Server No edit summary current Tag: Visual edit
- 03:2103:21, 25 April 2025 diff hist −62 Survival Server No edit summary Tag: Visual edit
- 03:1703:17, 25 April 2025 diff hist 0 MediaWiki:Sidebar No edit summary
- 03:1603:16, 25 April 2025 diff hist +481 N MediaWiki:Sidebar Created page with " * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-mediawiki * SEARCH * TOOLBOX * LANGUAGES * useful-pages ** Survival Server/Commands|SMP Commands ** Survival Server/Crafting|SMP Crafting Recipes ** Survival Server/Smelting|SMP Smelting ** Survival Server/Enchanting|SMP Enchanting ** Survival Server/Trading|SMP Trading ** Survival Server/Brewing|SMP Brewing ** Survival Server/Tutorials|SMP Tut..."
- 03:1003:10, 25 April 2025 diff hist +47 Survival Server No edit summary Tag: Visual edit
- 03:0903:09, 25 April 2025 diff hist +16 Main Page No edit summary current Tag: Visual edit
- 03:0503:05, 25 April 2025 diff hist +43 Main Page No edit summary Tag: Visual edit
- 03:0503:05, 25 April 2025 diff hist −16 Main Page No edit summary Tag: Visual edit
- 03:0403:04, 25 April 2025 diff hist +105 Main Page No edit summary Tag: Visual edit
- 03:0403:04, 25 April 2025 diff hist +45 N Survival Server/Unique Server Functions Orashgle moved page Survival Server/Unique Server Functions to Survival Server/Unique Features: Rename current Tag: New redirect
- 03:0403:04, 25 April 2025 diff hist 0 m Survival Server/Unique Features Orashgle moved page Survival Server/Unique Server Functions to Survival Server/Unique Features: Rename current
- 03:0303:03, 25 April 2025 diff hist +49 Survival Server/Unique Features No edit summary Tag: Visual edit
- 03:0203:02, 25 April 2025 diff hist +14 Main Page No edit summary Tag: Visual edit
- 03:0103:01, 25 April 2025 diff hist +144 N Survival Server/Land Claims Created page with "If you are looking for securing a chest or doorway, see our guide on Protecting Chests and Doors" current Tag: Visual edit
- 03:0003:00, 25 April 2025 diff hist +87 N Survival Server/Unique Features Created page with "Sleeping through night with only 25% of players sleeping Guardian NPCs Secure Trading" Tag: Visual edit
- 02:5902:59, 25 April 2025 diff hist +266 Survival Server No edit summary Tag: Visual edit
- 02:5102:51, 25 April 2025 diff hist +31 Survival Server/Crafting Recipes No edit summary Tag: Visual edit
- 02:5102:51, 25 April 2025 diff hist +95 N Survival Server/Crafting Recipes Created page with "You can make a mending book. Just need some diamonds and netherite scrap, AAAAAANNNND the book." Tag: Visual edit
- 02:5002:50, 25 April 2025 diff hist +62 Survival Server No edit summary Tag: Visual edit
- 02:4902:49, 25 April 2025 diff hist +25 Survival Server No edit summary Tag: Visual edit
- 02:4902:49, 25 April 2025 diff hist +15 Survival Server No edit summary Tag: Visual edit
- 02:4902:49, 25 April 2025 diff hist +32 Survival Server/Commands No edit summary current Tag: Visual edit
- 02:4802:48, 25 April 2025 diff hist +21 N Survival Server/Commands Created page with "The page for commands" Tag: Visual edit
- 02:4802:48, 25 April 2025 diff hist +14 N Survival Server Created page with "The first text" Tag: Visual edit
- 02:1802:18, 25 April 2025 diff hist +447 Main Page No edit summary
- 02:0702:07, 25 April 2025 diff hist −312 Main Page No edit summary Tag: Visual edit
- 02:0602:06, 25 April 2025 diff hist −12 Main Page No edit summary Tag: Visual edit
- 02:0402:04, 25 April 2025 diff hist +402 m Main Page No edit summary Tag: Visual edit
- 01:5201:52, 25 April 2025 diff hist −148 Main Page No edit summary Tag: Visual edit
- 01:5101:51, 25 April 2025 diff hist −518 Main Page No edit summary Tag: Visual edit
- 01:4801:48, 25 April 2025 diff hist +21 N File:Dt-logo.png No edit summary current
- 01:4801:48, 25 April 2025 diff hist +3,375 Main Page No edit summary