User contributions for Hachimitsu
Jump to navigation
Jump to search
24 September 2023
- 21:1721:17, 24 September 2023 diff hist −66 Main Page →Getting started
- 21:1421:14, 24 September 2023 diff hist +24 Main Page →Gameplay
- 21:1321:13, 24 September 2023 diff hist +38 Main Page →Gameplay
- 20:5620:56, 24 September 2023 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
- 20:5520:55, 24 September 2023 diff hist +2,569 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
- 20:5420:54, 24 September 2023 diff hist +18 Template:Infobox Profile No edit summary
- 20:5320:53, 24 September 2023 diff hist +27 Main Page →Gameplay
- 18:4718:47, 24 September 2023 diff hist +2,383 Template:Infobox Profile No edit summary
- 18:4518:45, 24 September 2023 diff hist +910 User:Hachimitsu No edit summary
- 18:2018:20, 24 September 2023 diff hist +201 Elin:Ashland No edit summary
- 18:1918:19, 24 September 2023 diff hist +80 Elin:Ashland/ja →About
- 00:0800:08, 24 September 2023 diff hist +391 Elin:NPCs →My Home
- 00:0300:03, 24 September 2023 diff hist +34 N Category:Elin Npcs in My Home Created page with "NPCS who exist within ''My Home''."
23 September 2023
- 23:5023:50, 23 September 2023 diff hist +99 Elin:Fiama No edit summary
- 23:4223:42, 23 September 2023 diff hist +890 Elin:My Home →My Home
- 23:4123:41, 23 September 2023 diff hist +17 N Category:Elin Locations Created page with "Locations in Elin" current
- 21:5921:59, 23 September 2023 diff hist +102 N Elin:Bestiary Created page with "== Race == === Putit === Putit === Roran === Younger Sister"
- 21:3821:38, 23 September 2023 diff hist +2,102 Main Page →Elin
- 17:0317:03, 23 September 2023 diff hist +220 m User:Hachimitsu/Example Protected "User:Hachimitsu/Example": This is an example page linked in the manual of style ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
22 September 2023
- 21:0521:05, 22 September 2023 diff hist +2,051 Elin:Changelog →Tech Demo
- 18:1918:19, 22 September 2023 diff hist +159 Category:Elona NPCs →Creatures current
- 18:0218:02, 22 September 2023 diff hist +903 Template:Untranslated No edit summary
- 17:5317:53, 22 September 2023 diff hist +271 N File:Elona NPC Sprite Younger Sister.png Uploaded a work by Lafrontier from Elona 1.22 with UploadWizard current Tag: Upload Wizard
- 17:5317:53, 22 September 2023 diff hist +271 N File:Elona NPC Sprite Putit.png Uploaded a work by Lafrontier from Elona 1.22 with UploadWizard current Tag: Upload Wizard
- 17:4617:46, 22 September 2023 diff hist +615 N Campaign:Elin NPCs Campaign creation
- 17:4517:45, 22 September 2023 diff hist +633 N Campaign:Elona NPCs Campaign creation
- 17:2117:21, 22 September 2023 diff hist +529 N Template:Imbox/doc Created page with " {{Imbox | text=Imbox stands for "image message box." | image=80px }} == Usage == <pre><nowiki> {{ Imbox | text=Imbox stands for "image message box." }} {{Imbox | type = style | style = width:400px; | image = 80px | textstyle = font-style:italic; font-weight:bold; color:red; | text = The message body text. }} </nowiki></pre> == External Links== * Visit wikipedia:Template:Imbox|Wikipedia's page..." current
- 17:2017:20, 22 September 2023 diff hist +5,405 N Module:Message box/configuration Created page with "local ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox speedy deletion.png' }, delete = { class = 'ambox-delete', image = 'Ambox deletion.png' }, content = { class = 'ambox-content', image = 'Ambox content.png' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Ambox move.png' }, protection = { class = 'ambox-protection', image = 'Ambox pro..." current
- 17:1917:19, 22 September 2023 diff hist +175 N Template:Imbox Created page with "<div class="noexcerpt">{{#invoke:Message box|imbox}}</div><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>" current
- 17:0717:07, 22 September 2023 diff hist +287 N Template:Lang Created page with "<includeonly><span lang="{{{1}}}" xml:lang="{{{1}}}">{{#switch:{{{1|}}} |zh-hans|zh-hant|zh-cn|zh-tw|zh-hk|zh-sg|zh-mo|zh-my|ja|ko|vi = {{{2}}} |#default = {{{2}}}}}</span>{{#switch:{{{1|}}} |ar|fa|he|ur = |#default = }}</includeonly><noinclude> {{Documentation}}</noinclude>" current
- 17:0317:03, 22 September 2023 diff hist +9,218 N Module:Infobox Created page with "-- Lua port of Template:Infobox -- by DennouNeko local common = require("Module:Common") local style = require("Module:Styles") local colors = style.main_colors -- == Helper functions == -- retrieve param list from arguments -- builds a table of objects with 'header', 'label', 'data', 'class', 'rclass' fields local function scan_data_rows(frame, ttype) local idx = {} local header = {} local label = {} local data = {} local class = {} local rclass = {..." current
- 17:0317:03, 22 September 2023 diff hist +678 N Module:Yesno Created page with "-- 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 == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =..." current
- 17:0217:02, 22 September 2023 diff hist +964 N Module:Styles Created page with "-- Library containing global coloring and styling used by multiple scripts -- dependencies local common = require("Module:Common") -- create global object local style = {} -- naming based on "Navbox" elements style.main_colors = { game = {border = '#A88580', title = '#FFC9C2', above = '#FFD1CA', group = '#FFD9D2', subgroup = '#FFE1DA', dark = '#FFEEE8', background = '#FFF4EE'}; music = {border = '#A8A077', title = '#FFF3B4', above = '#FFF6C0', group = '#FFF7C8', s..." current
- 17:0217:02, 22 September 2023 diff hist +18,065 N Module:Documentation/config Created page with "---------------------------------------------------------------------------------------------------- -- -- 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 be string values. ---------------------------------------------------------------------------------..."
- 17:0217:02, 22 September 2023 diff hist 0 Module:Documentation/doc Blanked the page current Tag: Blanking
- 17:0117:01, 22 September 2023 diff hist +36,239 N Module:Documentation Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local htmlBuilder = require('Module:HtmlBuilder') local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -..." current
- 17:0117:01, 22 September 2023 diff hist +3,906 N Module:Common Created page with "--[[ Library for all the functions that are going to be shared by other scripts. To use all the functions NOT defined as local, add at the beginning of script the following: require("Module:Common") The names aren't being sorted, because this could break the function dependencies. --]] -- create global object "common" for most of exported functions local common = {} -- == constants == common.romanizable = {'zh-hans', 'zh-hant', 'zh-cn', 'zh-tw', 'zh-hk', 'zh-sg', 'zh-..." current
- 17:0017:00, 22 September 2023 diff hist +238 N Template:Para Created page with "<code><nowiki>|</nowiki>{{#if:{{{1|}}}|<span style="white-space:nowrap;">{{{1}}}</span><nowiki>=</nowiki>|}}{{{2|}}}</code><noinclude> {{Documentation}} <!--Categories and interwikis go near the bottom of the /doc subpage.--> </noinclude>" current
- 16:5916:59, 22 September 2023 diff hist +130 N Template:Nowrap Created page with "<span style="white-space:nowrap;">{{{1}}}</span><noinclude>{{documentation}}<!--interwikis/categories go inside doc--></noinclude>" current
- 16:5216:52, 22 September 2023 diff hist +82 N Template:Infobox Created page with "{{#invoke:Infobox|BuildInfoboxTemplate}}<noinclude> {{Documentation}} </noinclude>" current
- 16:4916:49, 22 September 2023 diff hist +12,371 N Module:Arguments/doc Created page with "This module provides easy processing of arguments passed from #invoke. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly. Its features include: * Easy trimming of arguments and removal of blank arguments. * Arguments can be passed by both the current frame and by the parent frame at the same time. (More details below.) * Arguments can be passed in directly from another Lua module or from the debug console. * Arguments are..." current
- 16:4816:48, 22 September 2023 diff hist +140 N Template:Mbox Created page with "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>" current
- 16:4816:48, 22 September 2023 diff hist +1,310 N Template:Documentation subpage Created page with "<includeonly>{{#ifeq: {{lc:{{SUBPAGENAME}}}}|{{{override|doc}}} |<!-- doc page --> </includeonly>{{ #ifeq: {{{doc-notice|show}}}|show |{{mbox | type =notice | image =40px | text ='''This is a documentation subpage for {{{1|[[:{{SUBJECTSPACE}}:{{BASEPAGENAME}}]]}}}.'''<br />It contains usage information, categories, interlanguage links and other content that is not part of the original {{#if: {{{text2|}}}|{{{text2..." current
- 16:4816:48, 22 September 2023 diff hist +8,441 N Template:Documentation/doc Created page with "{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE YOU CAN EDIT THE TEMPLATE DOCUMENTATION BELOW THIS COMMENT --> This is the {{tl|documentation}} template. This template displays a green doc box like you are seeing now, and automatically loads the content from a /doc subpage. It can also load the content from other places if instructed to. This template is intended for documenting templates and other pages which are..." current
- 16:4716:47, 22 September 2023 diff hist +177 N Template:Documentation Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>" current
- 16:4716:47, 22 September 2023 diff hist +158 N Template:Tl Created page with "<onlyinclude>{{[[Template:{{{1}}}|{{{1}}}]]}}</onlyinclude><noinclude> ==Documentation== Look Wikipedia:Template:Tl. Category:Templates </noinclude>" current
- 16:4616:46, 22 September 2023 diff hist +458 N Template:Tag Created page with "<code style="white-space:nowrap;">{{#switch:{{{2|pair}}} |c|close = <!--nothing--> |s|single |o|open |p|pair = <{{{1|tag}}}{{#if:{{{params|}}}| {{{params}}}}} }}{{#switch:{{{2|pair}}} |c|close = {{{content|}}} |s|single = /> |o|open |p|pair = >{{{content|}}} }}{{#switch:{{{2|pair}}} |s|single |o|open = <!--nothing--> |c|close |p|pair = </{{{1|tag}}}> }}</code><noinclude> {{documentation}} </noinclude>" current
- 16:4516:45, 22 September 2023 diff hist +5,290 N Module:Message box/doc Created page with " This is a meta-module that implements the message box templates {{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead. == Usage == To use this module from another Lua module, first you need to load it. <source..." current
- 05:1805:18, 22 September 2023 diff hist +329 N Elin:Warrior populating redlinks
- 04:4704:47, 22 September 2023 diff hist +2,495 N Help:Manual of Style Manual of Style, rough