Main public logs
More actions
Combined display of all available logs of Emergency Response: Liberty County Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:47, 8 February 2026 Lucah1337 talk contribs created page Template:Key press (Created page with "<includeonly>{{{{{♥|safesubst:}}}#invoke:key|keypress}}</includeonly>")
- 19:46, 8 February 2026 Lucah1337 talk contribs created page Template:Documentation (Created page with "<includeonly>{{#if:{{{content|}}}| [[Category:Template documentation pages{{#translation:}}]] }}</includeonly>")
- 19:13, 8 February 2026 Lucah1337 talk contribs created page Module:Yesno (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Yesno -- License: CC-BY-SA 4.0 -- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == ni...")
- 19:11, 8 February 2026 Lucah1337 talk contribs created page Module:Category handler/shared (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Category_handler/shared -- License: CC-BY-SA 4.0 -- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Mod...")
- 19:11, 8 February 2026 Lucah1337 talk contribs created page Module:Category handler/data (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Category_handler/data -- License: CC-BY-SA 4.0 -- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') loc...")
- 19:09, 8 February 2026 Lucah1337 talk contribs created page Module:Category handler/config (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Category_handler/config -- License: CC-BY-SA 4.0 -------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- ------------------------------------------------...")
- 19:08, 8 February 2026 Lucah1337 talk contribs created page Module:Category handler (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Category_handler -- License: CC-BY-SA 4.0 -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}}...")
- 19:07, 8 February 2026 Lucah1337 talk contribs created page Module:Message box/configuration (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Message_box/configuration -- License: CC-BY-SA 4.0 -------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- ----------------------------------------------...")
- 19:06, 8 February 2026 Lucah1337 talk contribs created page Module:Message box (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Message_box -- License: CC-BY-SA 4.0 -- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('strict') local getArgs local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFI...")
- 19:05, 8 February 2026 Lucah1337 talk contribs created page Module:TNT (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:TNT -- License: CC-BY-SA 4.0 -- -- INTRO: (!!! DO NOT RENAME THIS PAGE !!!) -- This module allows any template or module to be copy/pasted between -- wikis without any translation changes. All translation text is stored -- in the global Data:*.tab pages on Commons, and used everywhere. -- -- SEE: https://www.mediawiki.org/wiki/Multilingual_Templates_and_Modules -- -- ATTENTION: -- Please do NOT renam...")
- 19:03, 8 February 2026 Lucah1337 talk contribs created page Module:Module wikitext (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Module_wikitext -- License: CC-BY-SA 4.0 local p = {} p.text = '' function p.main() return p.text end function p._addText(text, preprocessFrame) if preprocessFrame ~= false then text = (preprocessFrame or mw.getCurrentFrame()):preprocess(text) end p.text = p.text .. text end return p")
- 19:02, 8 February 2026 Lucah1337 talk contribs created page Module:Documentation/i18n (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Documentation/i18n -- License: CC-BY-SA 4.0 local format = require('Module:TNT').format local i18n = {} i18n['cfg-error-msg-type'] = format('I18n/Documentation', 'cfg-error-msg-type') i18n['cfg-error-msg-empty'] = format('I18n/Documentation', 'cfg-error-msg-empty') -- cfg['template-namespace-heading'] -- The heading shown in the template namespace. i18n['template-namespace-heading'] = format('I18n/Documentation', 't...")
- 19:01, 8 February 2026 Lucah1337 talk contribs created page Module:Documentation/config (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Documentation/config -- License: CC-BY-SA 4.0 ---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should...")
- 18:57, 8 February 2026 Lucah1337 talk contribs created page Module:Documentation (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Documentation -- License: CC-BY-SA 4.0 -- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local i18n = mw.loadData('Module:Documentation/i18n') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub -----...")
- 18:50, 8 February 2026 Lucah1337 talk contribs created page Module:Arguments (Created page with "-- Copied from https://www.mediawiki.org/wiki/Module:Arguments -- License: CC-BY-SA 4.0 -- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options e...")
- 13:32, 8 February 2026 Lucah1337 talk contribs created page File:WikimediaUI-Search.svg
- 13:32, 8 February 2026 Lucah1337 talk contribs uploaded File:WikimediaUI-Search.svg
- 12:08, 8 February 2026 Lucah1337 talk contribs created page File:FOvj6pTXsAE19CE.jpeg
- 12:08, 8 February 2026 Lucah1337 talk contribs uploaded File:FOvj6pTXsAE19CE.jpeg
- 18:39, 26 January 2026 Lucah1337 talk contribs created page File:RobloxScreenShot20231201 101227129.png
- 18:39, 26 January 2026 Lucah1337 talk contribs uploaded File:RobloxScreenShot20231201 101227129.png
- 15:35, 26 January 2026 Lucah1337 talk contribs changed visibility of a revision on page Talk:Main Page: content hidden, edit summary hidden and username hidden (Containing personal information)
- 15:34, 26 January 2026 Lucah1337 talk contribs changed visibility of a revision on page Talk:Main Page: content hidden, edit summary hidden and username hidden (Containing personal information)
- 17:05, 25 January 2026 Lucah1337 talk contribs created page File:FOKDw27WQAsT2-z.jpeg
- 17:05, 25 January 2026 Lucah1337 talk contribs uploaded File:FOKDw27WQAsT2-z.jpeg
- 11:04, 25 January 2026 Lucah1337 talk contribs created page File:Untitled.png
- 11:04, 25 January 2026 Lucah1337 talk contribs uploaded File:Untitled.png
- 21:31, 18 January 2026 Lucah1337 talk contribs created page MediaWiki:Common.js (Created page with "Any JavaScript here will be loaded for all users on every page load.: // Fix VisualEditor tab to use pretty URL with ?veaction=edit $(function() { var $veTab = $('#ca-ve-edit a'); if ($veTab.length) { var currentHref = $veTab.attr('href'); if (currentHref.includes('index.php') && currentHref.includes('veaction=edit')) { // Extract title from ugly URL var titleMatch = currentHref.match(/title=([^&]+)/); if...")
- 13:11, 18 January 2026 Lucah1337 talk contribs created page User talk:Lucah1337 (Created page with "* hello ~~~~")
- 16:13, 17 January 2026 Lucah1337 talk contribs created page MediaWiki:Aboutsite (Created page with "About us")
- 15:40, 17 January 2026 Lucah1337 talk contribs created page File:Badge-semanticmediawiki.svg
- 15:40, 17 January 2026 Lucah1337 talk contribs uploaded File:Badge-semanticmediawiki.svg
- 15:34, 17 January 2026 Lucah1337 talk contribs created page File:Badge-mediawiki.svg
- 15:34, 17 January 2026 Lucah1337 talk contribs uploaded File:Badge-mediawiki.svg
- 15:31, 17 January 2026 Lucah1337 talk contribs created page MediaWiki:Citizen.css (Created page with "All CSS here will be loaded for users of the Citizen skin: Footer changes: .citizen-footer { padding-block: 6rem; background-color: transparent; } .citizen-footer__siteinfo { justify-content: space-between; } .citizen-footer__sitetitle .mw-logo-wordmark { display: none; } * Footer icons * We use custom footer icons so we need to fine tune it: #footer-icons a { border: 0; padding: 0; background: transparent; opacity: var(--opacity-icon-base);...")
- 13:07, 17 January 2026 Lucah1337 talk contribs created page File:Badge-ccbyncsa.svg
- 13:07, 17 January 2026 Lucah1337 talk contribs uploaded File:Badge-ccbyncsa.svg
- 12:28, 17 January 2026 Lucah1337 talk contribs created page MediaWiki:Citizen-footer-tagline (Created page with "Maintained by Meta:Contributors and Meta:Staff.")
- 12:27, 17 January 2026 Lucah1337 talk contribs created page MediaWiki:Citizen-footer-desc (Created page with "Emergency Response: Liberty County Wiki – The official encyclopedia for ER:LC on Roblox. Comprehensive vehicle lists, team information, map locations, and roleplay resources.")
- 11:16, 17 January 2026 Lucah1337 talk contribs created page User:Lucah1337 (Created page with "can we get much higher") Tag: Visual edit
- 11:15, 17 January 2026 Lucah1337 talk contribs created page File:2x.png
- 11:15, 17 January 2026 Lucah1337 talk contribs uploaded File:2x.png
- 11:14, 17 January 2026 Lucah1337 talk contribs created page File:1 5x.png
- 11:14, 17 January 2026 Lucah1337 talk contribs uploaded File:1 5x.png
- 11:13, 17 January 2026 Lucah1337 talk contribs created page File:1x.png
- 11:13, 17 January 2026 Lucah1337 talk contribs uploaded File:1x.png
- 11:13, 17 January 2026 Lucah1337 talk contribs created page File:Icon.png
- 11:13, 17 January 2026 Lucah1337 talk contribs uploaded File:Icon.png
- 10:48, 17 January 2026 Lucah1337 talk contribs created page File:Favicon.ico
- 10:48, 17 January 2026 Lucah1337 talk contribs uploaded File:Favicon.ico