15 March 2025
- 16:2816:28, 15 March 2025 diff hist +12 Cannoning No edit summary
- 16:2116:21, 15 March 2025 diff hist +22 Cannoning No edit summary
- 16:2016:20, 15 March 2025 diff hist −14 Cannoning No edit summary
- 16:1916:19, 15 March 2025 diff hist 0 Cannoning No edit summary
- 16:1516:15, 15 March 2025 diff hist 0 Cannoning No edit summary
- 16:1516:15, 15 March 2025 diff hist +5 MediaWiki:Sidebar No edit summary
- 16:1416:14, 15 March 2025 diff hist +8 Base Building No edit summary
- 16:1416:14, 15 March 2025 diff hist 0 N Base Building Created blank page
- 16:1416:14, 15 March 2025 diff hist −19 Cannoning No edit summary
- 16:1316:13, 15 March 2025 diff hist +100 Cannoning No edit summary
- 16:0816:08, 15 March 2025 diff hist +3,545 N Module:Namespace detect/config Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --..." current
- 16:0716:07, 15 March 2025 diff hist +2,553 N Module:Namespace detect/data Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function..." current
- 16:0716:07, 15 March 2025 diff hist +5,988 N Module:Namespace detect Created page with "--[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace aliases are..." current
- 16:0616:06, 15 March 2025 diff hist +3,452 N Module:Pagetype/config Created page with "-------------------------------------------------------------------------------- -- Module:Pagetype configuration data -- -- This page holds localisation and configuration data for Module:Pagetype. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. -------------------------------------------------------------------------------- -- St..." current
- 16:0616:06, 15 March 2025 diff hist +6,392 N Module:Pagetype Created page with "-------------------------------------------------------------------------------- -- -- -- PAGETYPE -- -- -- -- This is a meta-module intended to replace {{pagetype}} and similar -- -- templates. It automatically detects namespaces, and allows for..." current
- 16:0516:05, 15 March 2025 diff hist +1,586 N Module:About Created page with "local mArguments --initialize lazily local mHatnote = require('Module:Hatnote') local mHatList = require('Module:Hatnote list') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.about (frame) -- A passthrough that gets args from the frame and all mArguments = require('Module:Arguments') args = mArguments.getArgs(frame) return p._about(args) end function p._about (args, options) -- Produces "about" hatnote...." current
- 16:0516:05, 15 March 2025 diff hist +23 N Template:About Created page with "{{#invoke:about|about}}" current
- 15:5915:59, 15 March 2025 diff hist 0 N File:WikimediaUI-Code.svg No edit summary current
- 15:5915:59, 15 March 2025 diff hist +8,604 N Module:Translate Created page with "require( 'strict' ) local Translate = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local i18n = require( 'Module:i18n' ):new() --- Cache table containing i18n data at the 'data' key, and a key map at the 'keys' key --- The table is keyed by the i18n.json module name local cache = {} local i18nDataset = 'Module:Translate/i18n.json' --- Uses the cur..." current
- 15:5815:58, 15 March 2025 diff hist +4,013 N Module:I18n Created page with "require( 'strict' ) local i18n = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType --- Cache table containing i18n data --- e.g. cache['en']['SMW'] will get you the SMW table in English local cache = {} --- Cache language codes for reuse local languages = {} --- Retrieve dataset namespace from key prefix --- --- @param key string The translation key -..." current
- 15:5815:58, 15 March 2025 diff hist +1,880 N Module:Mbox Created page with "local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local mError -- lazily initialise Module:Error local p = {} --- Helper function to throw error -- -- @param msg string - Error message -- -- @return string - Formatted error message in wikitext local function makeWikitextError( msg ) mError = require( 'Module:Error' ) return mError.error { message = 'Error: ' .. msg..." current
- 15:5715:57, 15 March 2025 diff hist +920 N Module:User error Created page with "-------------------------------------------------------------------------------- -- A less intimidating version of the built-in "error()" function, to help -- editors fix their mistakes when transcluding a template. -- -- @see wikia:w:c:Dev:Module:User error for a similar module. -------------------------------------------------------------------------------- local checkType = require("libraryUtil").checkType; return function (message, ...) checkType("Module:User..." current
- 15:5715:57, 15 March 2025 diff hist +2,892 N Module:Paramtest Created page with "-- Imported from: https://runescape.wiki/w/Module:Paramtest --[[ {{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..." current
- 15:5715:57, 15 March 2025 diff hist +30,594 N Module:Array Created page with "-- Imported from: https://runescape.wiki/w/Module:Array local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---@class Array ---@operator call(any[]): Array ---@operator concat(any[]): Array ---@operator concat(number|string|function): string ---@operator unm: Array ---@operator add(number|number[]|Array): Array ---@operator sub(number|number[]|Array): Array ---@operator mul(number|number[]..." current
- 15:5615:56, 15 March 2025 diff hist +23,057 N Module:DependencyList Created page with "--- Based on Module:DependencyList from RuneScape Wiki --- Modified to use SMW instead of DPL --- @see https://runescape.wiki/w/Module:DependencyList require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local userError = require("Module:User error") local hatnote = require('Module:Hatnote')._hatnote local mHatlist = require('Mod..." current
- 15:5415:54, 15 March 2025 diff hist +7,085 N Module:Documentation Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local i18n = require( 'Module:i18n' ):new() local TNT = require( 'Module:Translate' ):new() local lang = mw.getContentLanguage() local p = {} --- Wrapper function for Module:i18n.translate --- --- @param key string The translation key --- @return string If the key was not found, the key is returned local..." current
- 15:5415:54, 15 March 2025 diff hist +388 N Template:Documentation Created page with "<includeonly>{{#invoke:Documentation|doc}}__NOEDITSECTION__{{#seo: |type = website |description = {{FULLPAGENAME}} is a template page used on the Star Citizen Wiki. Templates are pages that are embedded (transcluded) into other pages to allow for the repetition of information. |site_name = Star Citizen Wiki |locale = {{PAGELANGUAGE}} }}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 15:5315:53, 15 March 2025 diff hist +2,292 N Template:See also/doc Created page with "{{Documentation|fromWikipedia=true}} This template is used to point to a small number of other related titles at the top of article sections. ==TemplateData== <templatedata> { "description": "This template creates a hatnote to point to a small number of related pages. It is placed at the top of a section, directly underneath the section heading.", "params": { "1": { "label": "Page 1", "description": "The name of the first page that you want to link to.", "..." current
- 15:4915:49, 15 March 2025 diff hist −1 Cannoning →Tips & Tricks
- 15:4915:49, 15 March 2025 diff hist +2 Cannoning →TNT
- 15:4815:48, 15 March 2025 diff hist +2 Cannoning →Block Behavior
- 15:4815:48, 15 March 2025 diff hist −192 Cannoning No edit summary
11 March 2025
- 02:3802:38, 11 March 2025 diff hist −23 Factions Overview →Value Based
- 02:3702:37, 11 March 2025 diff hist −28 Factions Overview →Value Based
- 02:3602:36, 11 March 2025 diff hist −39 Monster Spawner No edit summary
- 00:1100:11, 11 March 2025 diff hist −1 Category:Article stubs No edit summary
- 00:1000:10, 11 March 2025 diff hist +243 Category:Article stubs No edit summary
- 00:0800:08, 11 March 2025 diff hist +9 Glossary No edit summary
- 00:0700:07, 11 March 2025 diff hist +11 Category:Article stubs No edit summary
- 00:0700:07, 11 March 2025 diff hist 0 N Category:Article stubs Created blank page
- 00:0600:06, 11 March 2025 diff hist −32 Template:Stub No edit summary current
- 00:0600:06, 11 March 2025 diff hist 0 N File:WikimediaUI-Notice.svg No edit summary current
- 00:0500:05, 11 March 2025 diff hist +1,339 N Module:Mbox/styles.css Created page with ".mbox { position: relative; display: flex; flex-direction: column; margin-block: var(--space-md); background-color: var(--color-surface-1); border: 1px solid var(--border-color-base); border-radius: var(--border-radius-medium); font-size: var(--font-size-small); line-height: var(--line-height-xx-small); } .mbox.mbox-high { background-color: var(--background-color-destructive-subtle); } .mbox.mbox-med { background-color: var(--background-color-warning-subtle)..." current
- 00:0500:05, 11 March 2025 diff hist +588 N Template:Stub Created page with "<div class="mbox mbox-med mbox-stub" role="presentation"><span class="mbox-title"><span class="mbox-icon metadata">14px|link=</span>This article is a stub.</span> <div class="mbox-text">This article needs some ❤️! You can help the CosmicPE Wiki by <span class="plainlinks">[{{fullurl:{{FULLPAGENAME}}|action=edit}} expanding it]</span>. See Category:Article stubs for other pages that needs expansion.</div> </div><templatestyles src..."
- 00:0300:03, 11 March 2025 diff hist +33 Glossary →D
- 00:0200:02, 11 March 2025 diff hist +24 Glossary →I
- 00:0100:01, 11 March 2025 diff hist +17 Glossary →C
- 00:0100:01, 11 March 2025 diff hist +21 Glossary →C
10 March 2025
- 23:5923:59, 10 March 2025 diff hist +1 Glossary No edit summary
- 23:5923:59, 10 March 2025 diff hist +51 Glossary No edit summary