User contributions for Admin coral island

Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500 | 1,000)

4 August 2023

  • 02:4202:42, 4 August 2023 diff hist +2,584 N Module:File linkCreated page with "-- <nowiki>This module provides a library for formatting file wikilinks. -- Credits Wikipedia:Module:File link local yesno = require('Dev:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' t..." current
  • 02:2802:28, 4 August 2023 diff hist +2,970 N Module:CsvCreated page with "local p = {} local getArgs = require("Dev:Arguments").getArgs local str_find = string.find local str_sub = string.sub local str_gsub = string.gsub local tbl_insert = table.insert local function escapeMagicCharacters(s) -- Lua pattern magic chars are ^$()%.[]*+-? return str_gsub(s, '[%^%$%(%)%%%.%[%]%*%+%-%?]', '%%%1') end function p.main(frame) local args = getArgs(frame) local sPageName = args.page local fmtparams = { delimiter = args.delimiter, quotechar =..." current
  • 02:2602:26, 4 August 2023 diff hist +2,052 N Module:Context-linkCreated page with "-- <nowiki> -- This module implements context-link templates. local p = {} local getArgs = require('Dev:Arguments').getArgs -- Helper functions local function findNamespace(link) local namespace = link:match('^(.-):') if namespace then local namespaces = mw.site.namespaces[namespace] if namespaces then return namespaces.id end end return 0 end local function formatLink(link, display) local namespace = findName..." current
  • 02:2602:26, 4 August 2023 diff hist +31,997 N Module:ColorsCreated page with "--- Colors library for embedded color processing in the FANDOM environment. -- It ports and extends functionality in the Colors JS library written by -- Pecoes. The module supports HSL, RGB and hexadecimal web -- colors. -- -- The module offers numerous features: -- * Color parameter support in Lua modules. -- * Color parameter insertion in wiki templates. -- * Color variable parsing for style templating. -- * Color item creation and convers..." current
  • 02:2502:25, 4 August 2023 diff hist +6,172 N Module:CodedocCreated page with "-- <nowiki> --| Reads a file and outputs its comments. --b Pedro M. Rabinovitch <miller@inf.puc-rio.br> --$Id: dofile.lua,v 1.2 2003/10/20 03:35:08 miller Exp $ --TODO Check if multiline syntax is working properly -- Wikifying by Dessamator local p = {} local ProcLua = require ('Dev:Codedoc/Procsrc') local args = require ("Dev:Arguments").getArgs local opt = { complete = true, proc_private = true, hideHeader = true } --% Creates docs for a module..." current
  • 02:2202:22, 4 August 2023 diff hist +1,157 N Module:CheckCreated page with "-- Module Check -- -- Written by User:Shining-Armor -- -- Version 0.0.1 -- -- Last updated 9-15-2014 --<nowiki> local p = {} -- {{#invoke: Check|isMatch|Case Sensitive|arg1|arg2|ifTrue|ifFalse}} -- -- {{#invoke: Check|isMatch|false|Cat|Dog|Animal is a cat|Animal is not a cat}} -> Animal is not a cat function p.isMatch( frame ) if frame.args[1] == 'true' then frame.args[2] = string.lower(frame.args[2]) frame.args[3] = string.lower(frame.args[3])..." current
  • 02:2202:22, 4 August 2023 diff hist +6,626 N Module:CboxCreated page with "local p = {} local cbox local styles,css,args = {},{},{} local lomod = require('Dev:Cbox/layout') local chrome = require('Dev:Colors') local getArgs = require('Dev:Arguments').getArgs local notmeta_checks = { above = true, below = true, class = true, data = true, fontsize = true, header = true, image = true, imagelink = true, imagesize = true, layout = true, name = true, quote = true, reason = true, reasontext = true, text = true, timestam..." current

3 August 2023

  • 16:5816:58, 3 August 2023 diff hist +2,212 N Module:BlockMessagesCreated page with "--| Module:BlockMessages (v2.2.0) --by "The JoTS" -- v3.0 (Planned) - Drop requirement for sub'd ":" for ":" -- v2.2 - Support for message headers and footers -- v2.1 - Preparation function for MediaWiki:Ipbreason-dropdown -- v2.0 - Now only accepts named parameters. (To avoid errors with "=") --- This module is meant to be used in conjunction to MessageBlock and --- allows for customized block messages for every offense listed in the --- Ipbreason-dropdown sys..." current
  • 16:5816:58, 3 August 2023 diff hist +2,012 N Module:AutochangecatCreated page with "--<pre>Automatically changes categories/templates after xx days -- based on the last date the page was saved/edited -- use in template or directly -- Syntax = {{#invoke:Autochangecat|main|days=2|category1=Dev|category2=Developers|template=true}} -- Syntax = {{#invoke:Autochangecat|main|date=2015-05-06|category1=Dev|category2=Developers|template=true}} local p = {} local u = require("Dev:Utility") local function preprocess(sText) if mw.getCurrentFrame() then sText =..." current
  • 16:5616:56, 3 August 2023 diff hist +3,417 N Module:AutocalctableCreated page with "--|Description : Autocalctable --|Adds summation/average/min/max values of a column of a table imported from json/module/csv page --|Syntax : --|{{#invoke:Autotablecalc|page=pagename|type=datatype|calc=calculationtype}} --|Where calc = sum/avg/min/max - can be more than one separated by commas ,e.g. calc=sum,avg --| pagename = name of page/module --| datatype = json or lua or cvs local p = {} local csv = require("Dev:Csv") local json = require("Dev:Json") local getArgs..." current
  • 16:5516:55, 3 August 2023 diff hist +2,352 N Module:AsofCreated page with "-- <pre> Creates dated statements local p = {} local u = require("Dev:Utility") local tValidMonths = { january = 1, february = 2, march = 3, april = 4, may = 5, june = 6, july = 7, august = 8, september = 9, october = 10, november = 11, december = 12, } --% Entry point Creates a dated statement and categorizes the page --@ frame (table) A scribunto frame --: (string) A string containing "As of", and a category with the date function p.main(frame) local tArg..." current
  • 16:5416:54, 3 August 2023 diff hist +2,890 N Module:AccordionCreated page with "local getArgs = require('Dev:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame) local types = { text = 'text', links = 'links', } local hasTypeMismatch = false local accordionsType = types[args.type] or 'text' local wrapper = mw.html.create('div'):addClass('accordions__wrapper'):attr({ ['data-accordions-type'] = accordionsType, ['data-animation-duration'] = tonumber(args['animation-d..." current
  • 16:5316:53, 3 August 2023 diff hist +58,264 N Module:Documentation/i18nCreated page with "-- <nowiki> return { ["_metadata"] = { ["order"] = { "add-categories-blurb", "configuration", "configuration-text", "dependencies", "description", "documentation-heading", "documentation-visibility", "example", "examples", "experiment-blurb-module", "experiment-blurb-module-nosandbox", "experiment-blurb-template",..." current
  • 16:5116:51, 3 August 2023 diff hist +483 N Module:HatnoteCreated page with "-- This Module is used for making templates based in the Lua language. -- See more details about Lua in w:Help:Lua. -- The Fandom Developer's Wiki hosts Global Lua Modules that can be imported and locally overridden. -- The next line imports the Hatnote module from the w:c:dev:Global Lua Modules. local H = require('Dev:Hatnote') -- See more details about this module at w:c:dev:Global_Lua_Modules/Hatnote -- The last line produces the output for the template..."
  • 16:5016:50, 3 August 2023 diff hist +787 N Module:ExistsCreated page with "-- Module copied from Genshin Impact wiki. local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, wrapper = {'Template:Exists'} }) return p._main(args) end function p._main(args) local page = args[1] or '' local trueResult = args[2] or args['then'] or '' local falseResult = args[3] or args['else'] or '' if (p.checkExists(page)) then return trueResult else return falseResu..." current
  • 16:4716:47, 3 August 2023 diff hist −2 Template:CiNo edit summary
  • 16:4616:46, 3 August 2023 diff hist −13 Template:CiNo edit summary
  • 16:4616:46, 3 August 2023 diff hist +23 Template:CiNo edit summary
  • 16:4516:45, 3 August 2023 diff hist +167 N Template:CiCreated page with "{{#switch: {{lc:{{{1|}}}}} |nl = ''Coral Island'' |#default = ''Coral Island''}}<noinclude> category:Templates{{documentation}}</noinclude>"
  • 16:4416:44, 3 August 2023 diff hist +167 N Template:CICreated page with "{{#switch: {{lc:{{{1|}}}}} |nl = ''Coral Island'' |#default = ''Coral Island''}}<noinclude> category:Templates{{documentation}}</noinclude>"
  • 16:4016:40, 3 August 2023 diff hist −38 Template:QuotesUndo revision 5658 by Admin coral island (talk) Tag: Undo
  • 16:3916:39, 3 August 2023 diff hist +38 Template:QuotesNo edit summary Tag: Reverted
  • 16:3616:36, 3 August 2023 diff hist 0 Template:QuotesNo edit summary
  • 16:3416:34, 3 August 2023 diff hist 0 Template:QuotesNo edit summary
  • 09:0109:01, 3 August 2023 diff hist +4 Template:Heart eventNo edit summary
  • 08:5808:58, 3 August 2023 diff hist +27 Template:HeartsNo edit summary
  • 08:5608:56, 3 August 2023 diff hist +64 Template:Heart eventNo edit summary
  • 08:5408:54, 3 August 2023 diff hist +23 Template:Heart eventNo edit summary
  • 08:5208:52, 3 August 2023 diff hist −86 Template:Heart eventNo edit summary
  • 08:5208:52, 3 August 2023 diff hist −14 Template:Heart eventNo edit summary
  • 08:4908:49, 3 August 2023 diff hist +2 Template:QuotesNo edit summary
  • 08:3508:35, 3 August 2023 diff hist −7 Template:QuotesNo edit summary
  • 08:3208:32, 3 August 2023 diff hist +8 Template:QuotesNo edit summary
  • 08:2808:28, 3 August 2023 diff hist −49 Template:QuotesNo edit summary
  • 07:5607:56, 3 August 2023 diff hist −2,109 Template:Infobox itemNo edit summary
  • 07:5407:54, 3 August 2023 diff hist +8,810 N Template:Infobox itemCreated page with "<includeonly><infobox> <title source="title"> <default>{{PAGENAME}}</default> </title> <image source="image"> <default>{{Exists|File:{{#titleparts:{{PAGENAME}}}}.png|{{#titleparts:{{PAGENAME}}}}.png|}}</default> <caption source="description" /> </image> <group> <header>Information</header> <data source="type"> <label>Type</label> <!-- Type shown in in-game details --> <format><!-- -->{{#switch:..."
  • 07:4807:48, 3 August 2023 diff hist +8 Main Page→‎Welcome to the Official Coral Island Wiki
  • 07:4007:40, 3 August 2023 diff hist +88 N Template:IconCreated page with "<includeonly>{{#invoke:Icon|main}}</includeonly><noinclude>{{Documentation}}</noinclude>"
  • 06:5506:55, 3 August 2023 diff hist +3,055 N ShopCreated page with "'''Shops''' are locations where the player can obtain a wide array of products by exchanging for coins and sometimes other materials as well. ==List== There are 18 shops in total on Coral Island as of v0.4. {| class="fandom-table article-table sortable tdc tdbg1" !Name !Services !Employees !Locations !Days Open !Days Closed !Hours |- |Beach Shack |Drinks<br />Food<br />Baits<br />Advanced Fishing Rods<br />Advanced Nets |Sunny |Beach |Mon–Sun |Tue |{{T..." Tag: Visual edit: Switched
  • 06:5406:54, 3 August 2023 diff hist +3,157 N Module:ShopCreated page with "local p = {} local lib = require('Module:Feature') local Icon = require('Module:Icon')._main local category = mw.html.create() function p.main(frame) local args = require('Module:Arguments').getArgs(frame) local delim = args.delim or ';' --start out and figure out cols local out = mw.html.create('table'):addClass('article-table fandom-table sortable ' .. (args.class or '')) local default = {} table.insert(default, (args.firstcol or 'Item')) table.insert(default..."
  • 06:5406:54, 3 August 2023 diff hist +4,128 N Module:Shop availabilityCreated page with "local p = {} local Parse = require('Module:Parser').getTemplateArgs local Slib = require('Module:Shop') local lib = require('Module:Feature') local Icon = require('Module:Icon')._main local Pages = {} local display = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst=true, wrappers = {'Template:Shop availability'} }) local item = args[1] or mw.title.getCurrentTitle().rootText if lib.isNotEmpty(frame.args.pages) then..." current
  • 06:5406:54, 3 August 2023 diff hist +303 N Template:Shop availabilityCreated page with "<includeonly>{{#invoke:Shop availability|main|pages={{#DPL: |namespace= |uses=Template:Shop |category={{#if:{{{1|}}}|{{Array|{{lc:{{{1|}}}}}|;|Sells {item}|¦}}|Sells {{lc:{{#titleparts:{{PAGENAME}}}}}}}} |ordermethod=title |format=,%PAGE%$$$,, }}}}</includeonly><noinclude>{{Documentation}}</noinclude>"
  • 06:5206:52, 3 August 2023 diff hist +8,167 N Module:ParserCreated page with "local p = {} local CHAR_EQUAL = string.byte("=") local CHAR_OPEN_BRACE = string.byte("{") local CHAR_PIPE = string.byte("|") local CHAR_CLOSE_BRACE = string.byte("}") local CHAR_OPEN_BRACKET = string.byte("[") local CHAR_CLOSE_BRACKET = string.byte("]") local FormatParser = {} -- methods local FormatParserMetatable = { __index = FormatParser, } function p.getTemplateArgs(page, options) options = options or {} local rawContent = '' if options.custom then rawContent..." current
  • 06:5206:52, 3 August 2023 diff hist +8,136 N Module:Recipes by category tableCreated page with "local p = {} local lib = require('Module:Feature') local Icon = require('Module:Icon')._main local Icon_list = require('Module:Icon list')._main local Parse = require('Module:Parser').getTemplateArgs local LL = require('Module:Link label')._main local show_time = false function p.main(frame) local args = require('Module:Arguments').getArgs(frame) if lib.isEmpty(frame.args.pages) then local result = args.noresult or '' if result ~= '' then return result elseif ar..." current
  • 06:5006:50, 3 August 2023 diff hist +752 N Template:Recipes by category tableCreated page with "<includeonly>{{#invoke:Recipes by category table|main|pages={{#if:{{{only|}}}||{{#if:{{{1|}}}{{{medium|}}}{{{category|}}}{{{not|}}}| {{#dpl: |namespace = |category = {{#if:{{{1|}}}|{{Array|{{lc:{{{1|}}}}}|;|Uses {item}|¦}}}} |category = {{#if:{{{medium|}}}|{{Array|{{lc:{{{medium|}}}}}|;|Crafted with {item}|¦}}}} |category = {{{category|}}} |category = {{{category2|}}} |uses = Template:Recipe |notcategory = Upcoming content |notcategory = Removed |n..."
  • 06:0206:02, 3 August 2023 diff hist −2 Template:Ranch AnimalsNo edit summary current
  • 06:0206:02, 3 August 2023 diff hist −1 Template:Ranch AnimalsNo edit summary
  • 06:0106:01, 3 August 2023 diff hist +1 Template:Ranch AnimalsNo edit summary
  • 05:5905:59, 3 August 2023 diff hist +24 Template:Ranch AnimalsNo edit summary
  • 05:5605:56, 3 August 2023 diff hist +475 Template:CostNo edit summary
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500 | 1,000)