Combined display of all available logs of CosmicPE Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:55, 15 March 2025 Muqsit talk contribs uploaded File:FactionBase Killerz Void2.png
- 22:55, 15 March 2025 Muqsit talk contribs deleted page File:FactionBase Killerz Void2.png (content was: "", and the only contributor was "Muqsit" (talk))
- 22:53, 15 March 2025 Muqsit talk contribs created page File:FactionBase Killerz Void2.png
- 22:53, 15 March 2025 Muqsit talk contribs uploaded File:FactionBase Killerz Void2.png
- 16:14, 15 March 2025 Muqsit talk contribs created page Bases and Raiding (Created blank page)
- 16:08, 15 March 2025 Muqsit talk contribs created page 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. -- --...")
- 16:07, 15 March 2025 Muqsit talk contribs created page 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...")
- 16:07, 15 March 2025 Muqsit talk contribs created page 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...")
- 16:06, 15 March 2025 Muqsit talk contribs created page 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...")
- 16:06, 15 March 2025 Muqsit talk contribs created page 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...")
- 16:05, 15 March 2025 Muqsit talk contribs created page 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....")
- 16:05, 15 March 2025 Muqsit talk contribs created page Template:About (Created page with "{{#invoke:about|about}}")
- 15:59, 15 March 2025 Muqsit talk contribs created page File:WikimediaUI-Code.svg
- 15:59, 15 March 2025 Muqsit talk contribs uploaded File:WikimediaUI-Code.svg
- 15:59, 15 March 2025 Muqsit talk contribs created page 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...")
- 15:58, 15 March 2025 Muqsit talk contribs created page 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 -...")
- 15:58, 15 March 2025 Muqsit talk contribs created page 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...")
- 15:57, 15 March 2025 Muqsit talk contribs created page 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...")
- 15:57, 15 March 2025 Muqsit talk contribs created page 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...")
- 15:57, 15 March 2025 Muqsit talk contribs created page 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[]...")
- 15:56, 15 March 2025 Muqsit talk contribs created page 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...")
- 15:54, 15 March 2025 Muqsit talk contribs created page 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...")
- 15:54, 15 March 2025 Muqsit talk contribs created page 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>")
- 15:53, 15 March 2025 Muqsit talk contribs created page 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.", "...")
- 00:22, 12 March 2025 Muqsit talk contribs deleted page File:Fire 1 placeholder.png (content was: "", and the only contributor was "Deopmuqsit" (talk))
- 00:07, 11 March 2025 Muqsit talk contribs created page Category:Article stubs (Created blank page)
- 00:06, 11 March 2025 Muqsit talk contribs created page File:WikimediaUI-Notice.svg
- 00:06, 11 March 2025 Muqsit talk contribs uploaded File:WikimediaUI-Notice.svg
- 00:05, 11 March 2025 Muqsit talk contribs created page 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)...")
- 00:05, 11 March 2025 Muqsit talk contribs created page 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...")
- 23:43, 10 March 2025 Muqsit talk contribs created page Heroic Envoy Boss (Created page with "{{Infobox_boss| |name = Heroic Envoy Boss |difficulty = Legendary+ |image = PlagueBloater.webp |health = 2048 |armor = {{armor|20}} |attack = {{hp|50}} |spawn = LMS |reward_dist = Distributed to Top 5 Damagers |rewards = <span> # 1x Godly Chest # 1x Godly Chest </span>}}{{See also|Plague Bloater|label 1=Boss: Plague Bloater}} The '''{{PAGENAME}}''' is a giant infectious Plague Bloater loo...")
- 22:45, 10 March 2025 Muqsit talk contribs created page File:TimelessDragon Spawning.mp4
- 22:45, 10 March 2025 Muqsit talk contribs uploaded File:TimelessDragon Spawning.mp4
- 22:08, 10 March 2025 Muqsit talk contribs created page Timeless Dragon (Created page with "{{Infobox_boss| |name = Timeless Dragon |difficulty = Godly |image = TimelessDragon.webp |health = 2000 |armor = {{armor|20}} |attack = {{hp|25}} |spawn = The End |reward_dist = Items dropped upon death |rewards = Variety; combat equipment, monster spawners, and more. }}The '''{{PAGENAME}}''' is a dragon that orbits around its summoning spot. It periodically spawns in the End...")
- 21:45, 10 March 2025 Muqsit talk contribs created page File:TimelessDragon.webp
- 21:45, 10 March 2025 Muqsit talk contribs uploaded File:TimelessDragon.webp
- 23:02, 8 March 2025 Muqsit talk contribs created page File:Boss banner.webp
- 23:02, 8 March 2025 Muqsit talk contribs uploaded File:Boss banner.webp
- 22:02, 8 March 2025 Muqsit talk contribs created page Property:Name (Created page with "Name of an entity. Type: Page")
- 21:50, 8 March 2025 Muqsit talk contribs created page Property:Page Image (Created blank page)
- 19:36, 8 March 2025 Muqsit talk contribs created page File:Flag us.png
- 19:36, 8 March 2025 Muqsit talk contribs uploaded File:Flag us.png
- 19:35, 8 March 2025 Muqsit talk contribs deleted page File:Us.svg (content was: "", and the only contributor was "Muqsit" (talk))
- 19:27, 8 March 2025 Muqsit talk contribs created page File:Us.svg
- 19:27, 8 March 2025 Muqsit talk contribs uploaded File:Us.svg
- 19:08, 8 March 2025 Muqsit talk contribs created page Category:Pages using Details parser tag (Created page with "__HIDDENCAT__")
- 18:30, 8 March 2025 Muqsit talk contribs created page Property:Health points (Created blank page)
- 17:29, 8 March 2025 Muqsit talk contribs created page Sandbox2 (Created page with "{{InfoboxNeue | indicator = Indicator | image = BroodMother.webp | title = Hello world | subtitle = Lorem ipsum | section1 = 1st section | section-subtitle1 = 1st section's subtitle | label1 = 1st item's label | content1 = item's content | section2 = 2nd section | section-subtitle2 = 2nd section's subtitle | label2 = 1st item's label | content2 = 1st item's content | lab...")
- 15:07, 8 March 2025 Muqsit talk contribs deleted page Module:I18n (content was: "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 = {} -...", and the only contributor was "Muqsit" (talk))
- 15:02, 8 March 2025 Muqsit talk contribs created page 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 -...")