All public logs
Jump to navigation
Jump to search
Combined display of all available logs of MB Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:17, 2 August 2023 Novell talk contribs created page File:Adoptable Trinket.jpg (Uploaded own work with UploadWizard)
- 12:17, 2 August 2023 Novell talk contribs uploaded File:Adoptable Spike Dalmatian.jpg (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 12:17, 2 August 2023 Novell talk contribs created page File:Adoptable Spike PitbullCorgi.jpg (Uploaded own work with UploadWizard)
- 12:17, 2 August 2023 Novell talk contribs uploaded File:Adoptable Trinket.jpg (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 12:17, 2 August 2023 Novell talk contribs uploaded File:Adoptable Spike PitbullCorgi.jpg (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 12:09, 2 August 2023 Novell talk contribs created page File:Pet adoption center.png
- 12:09, 2 August 2023 Novell talk contribs uploaded File:Pet adoption center.png
- 11:23, 2 August 2023 Novell talk contribs created page File:PlayerHouse LV3.png
- 11:23, 2 August 2023 Novell talk contribs uploaded File:PlayerHouse LV3.png
- 11:23, 2 August 2023 Novell talk contribs created page File:PlayerHouse LV2.png
- 11:23, 2 August 2023 Novell talk contribs uploaded File:PlayerHouse LV2.png
- 11:22, 2 August 2023 Novell talk contribs created page File:PlayerHouse LV0.png
- 11:22, 2 August 2023 Novell talk contribs uploaded File:PlayerHouse LV0.png
- 11:22, 2 August 2023 Novell talk contribs created page File:PlayerHouse LV1.png
- 11:22, 2 August 2023 Novell talk contribs uploaded File:PlayerHouse LV1.png
- 10:56, 2 August 2023 Admin coral island talk contribs created page File:768T Icon StarBronzeB.png (Uploaded own work with UploadWizard)
- 10:56, 2 August 2023 Admin coral island talk contribs uploaded File:768T Icon StarBronzeB.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 10:56, 2 August 2023 Admin coral island talk contribs created page File:747T Icon StarGoldB.png (Uploaded own work with UploadWizard)
- 10:56, 2 August 2023 Admin coral island talk contribs created page File:734T Icon StarOsmiumB.png (Uploaded own work with UploadWizard)
- 10:56, 2 August 2023 Admin coral island talk contribs created page File:759T Icon StarSilverB.png (Uploaded own work with UploadWizard)
- 10:56, 2 August 2023 Admin coral island talk contribs uploaded File:747T Icon StarGoldB.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 10:56, 2 August 2023 Admin coral island talk contribs uploaded File:734T Icon StarOsmiumB.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 10:56, 2 August 2023 Admin coral island talk contribs uploaded File:759T Icon StarSilverB.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 10:47, 2 August 2023 Novell talk contribs created page File:House 1 Outside.png
- 10:47, 2 August 2023 Novell talk contribs uploaded File:House 1 Outside.png
- 10:44, 2 August 2023 Novell talk contribs created page File:House 1 basic feature.png
- 10:44, 2 August 2023 Novell talk contribs uploaded File:House 1 basic feature.png
- 10:42, 2 August 2023 Novell talk contribs created page File:House 2 decor.png
- 10:42, 2 August 2023 Novell talk contribs uploaded File:House 2 decor.png
- 10:15, 2 August 2023 Admin coral island talk contribs created page Template:Replace (Created page with "<includeonly>{{#invoke:Replace|main}}</includeonly><noinclude>{{Documentation}}Category:Lua templates</noinclude>")
- 10:15, 2 August 2023 Admin coral island talk contribs created page /Template:Replace (Created page with "<includeonly>{{#invoke:Replace|main}}</includeonly><noinclude>{{Documentation}}Category:Lua templates</noinclude>")
- 10:09, 2 August 2023 Admin coral island talk contribs created page Module:Mbox (Created page with "return require('Dev:Mbox')")
- 10:07, 2 August 2023 Admin coral island talk contribs created page Module:Arguments (Created page with "-- based on https://dev.fandom.com/wiki/Module:Arguments?oldid=160378 --- Arguments invocation argument extractor for Scribunto modules. -- It is intended for use by other Lua modules, and should not be -- called from an invocation (`#invoke`) directly. -- -- This module supports the following features: -- * Trimming and blank argument removal. -- * Argument inheritance between child and parent frames. -- * Argument extraction for external modules and console...")
- 10:06, 2 August 2023 Admin coral island talk contribs created page Module:Icon list (Created page with "local p = {} local lib = require('Module:Feature') local Icon = require('Module:Icon')._main function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Icon list' } }) return p._main(args) end function p._main(args) local input = args[1] or '' local itemDelim = args.delim or ';' local items = lib.split(input, itemDelim) if next(items) == nil then return mw.html.create()...")
- 10:04, 2 August 2023 Admin coral island talk contribs created page Module:Icon (Created page with "local p = {} local lib = require('Module:Feature') local LL = require('Module:Link label')._main function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Icon' } }) return p._main(args) end function p._main(args) local item = args.name or args[1] if not item then return mw.html.create() end -- if no input then return blank local nolink = lib.isNotEmpty(args.nolink) or fa...")
- 10:03, 2 August 2023 Admin coral island talk contribs created page Module:Link label (Created page with "local p = {} local TERMS = { ' %(flower%)', ' %(group%)', ' %(character%)', ' %(game%)', ' %(item%)', ' %(artisan product%)', ' %(cooked dish%)', } function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, wrapper = { 'Template:Link label' } }) return p._main(args) end function p.getTerms() local result = mw.html.create() for _, term in ipairs(TERMS) do local replacedTerm, _ = term:gsub('%%', '') result:ne...")
- 10:02, 2 August 2023 Admin coral island talk contribs created page Module:Card (Created page with "local p = {} local lib = require('Module:Feature') local LL = require('Module:Link label')._main local Ilib = require('Module:Icon') function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Card' } }) return p._main(args) end function p._main(args) local item = args.name or args[1] if not item then return mw.html.create() end -- if no input then return blank local link =...")
- 09:53, 2 August 2023 Admin coral island talk contribs created page Module:Feature (Created page with "--- Miscellaneous useful functions. local lib = {} local util = require('libraryUtil') local checkType = util.checkType local checkTypeMulti = util.checkTypeMulti local NIL_OK = true --- Choose one of two values to return. -- @param {boolean} cond Determines which value to return. -- @param T The value to return if `cond` is true (or truthy). -- @param F The value to return if `cond` is false (or falsey). function lib.ternary(cond, T, F) if cond then ret...")
- 09:50, 2 August 2023 Admin coral island talk contribs created page Module:Card list (Created page with "local p = {} local lib = require('Module:Feature') local Card = require('Module:Card')._main local Ilib = require('Module:Icon list') function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false, wrapper = { 'Template:Card list' } }) return p._main(args) end function p._main(args) local input = args[1] or '' local itemDelim = args.delim or ';' local items = lib.split(input, itemDelim) if next(ite...")
- 09:48, 2 August 2023 Admin coral island talk contribs created page Module:Replace (Created page with "--- Module copied from Genshin Impact wiki. local p = {} local ie = require('Module:Feature').isEmpty function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, wrapper = { 'Template:Replace' } }) return p._main(args) end function p._main(args) local inputString = args[1] or nil local search = args[2] or args.s1 or nil local replace = args[3] or args.r1 or '' -- argument validation if ie(inputString) then return...")
- 09:47, 2 August 2023 Novell talk contribs created page File:Bug Farm.png
- 09:47, 2 August 2023 Novell talk contribs uploaded File:Bug Farm.png
- 09:46, 2 August 2023 Novell talk contribs created page File:Fish Pond.png
- 09:46, 2 August 2023 Novell talk contribs uploaded File:Fish Pond.png
- 09:28, 2 August 2023 Admin coral island talk contribs created page Template:Card list (Created page with "<includeonly>{{#invoke:Card list|main}}</includeonly><noinclude>{{Documentation|type=Card}}</noinclude>")
- 09:27, 2 August 2023 Admin coral island talk contribs created page Template:Color (Created page with "<includeonly><!-- --><span class="<!-- -->{{#if:{{{bg|}}}|bg|text}}-{{{1|player}}}<!-- color class -->"><!-- -->{{{2|text}}}<!-- text to color --></span><!-- --></includeonly><noinclude>{{Documentation}}</noinclude>")
- 09:24, 2 August 2023 Admin coral island talk contribs created page Template:MessageBox (Created page with "{{#invoke:Mbox|main}}<noinclude>{{Documentation}}<!-- For a more traditional wikitext version of this template, see https://templates.fandom.com/wiki/Template:Ambox --></noinclude>")
- 09:22, 2 August 2023 Admin coral island talk contribs created page Template:Namespace (Created page with "{{SAFESUBST:<noinclude />#invoke:Namespace detect|main}}")
- 09:21, 2 August 2023 Admin coral island talk contribs created page Template:Letter (Created page with "<includeonly><!-- --><div class="ci-letter-wrapper"><!-- Header --><div class="ci-letter-header"><!-- Title -->{{#if:{{{title|}}}|<div class="ci-letter-title"><!-- -->{{{title|}}}<!-- --></div><hr />}}<!-- Opening --><div class="ci-letter-opening"><!-- -->{{#replace:{{{opening|''Player'',}}}|''Player''|{{Color|player|''Player''}}}}<!-- --></div><!-- --></div><!-- Content --><div class="ci-lette...")
- 09:20, 2 August 2023 Admin coral island talk contribs created page Template:Stub (Created page with "<includeonly>{{MessageBox |class = yellow |image = Journal menu.png |imagewidth = 40px |header = This page is in need of information. |text = Can you help out? [{{fullurl:{{FULLPAGENAMEE}}|action=edit}} Click here to add more.] |comment = {{{1|Unspecified reason}}} |id = {{{id|stub}}} }}{{Namespace|main=Category:Article stubs{{#if:{{{1|}}}|Category:Article stubs with reason}}}}</includeonly><noinclude>{{D...")