Combined display of all available logs of FiguraMC. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:30, 4 November 2024 Slyme talk contribs created page User:Slyme/Drafts/Lua Basics/Values (Created page with "{{Notice |content='''This article is part of a larger series on the [[../|Lua Basics]].'''<br> * Please check out the Lua Basics if you haven't already. * For more documents within this series, please scroll to the bottom of the page or click here. }} '''Values''' are essentially data within Lua. Values can be passed into functions as arguments and can be stored in [[../Variables|variables]] for future use. There are several different ty...")
- 22:57, 2 November 2024 PoolloverNathan talk contribs created page Template:D (Created page with "<includeonly><dt>{{{1}}}</dt><dd>{{{2}}}</dd></includeonly><noinclude>{{lowercase}}A <code><dt></code> and <code><dd></code> pair for nested or otherwise manually-created definition lists. <templatedata> { "params": { "1": {}, "2": {} } } </templatedata></noinclude>")
- 22:51, 2 November 2024 PoolloverNathan talk contribs created page Template:Nest (Created page with "<includeonly>{{{1}}}</includeonly><noinclude>Returns the argument unmodified, to fix parsing issues when nesting certain types of elements.</noinclude>")
- 23:46, 29 October 2024 PenguinEncounter talk contribs deleted page Vector/Operators (Unlink)
- 23:46, 29 October 2024 PenguinEncounter talk contribs deleted page Vector/OperatorIndex (Unlink)
- 23:46, 29 October 2024 PenguinEncounter talk contribs deleted page Vector/Methods (Unlink)
- 23:45, 29 October 2024 PenguinEncounter talk contribs deleted page Vector/MethodIndex (Unlink)
- 23:45, 29 October 2024 PenguinEncounter talk contribs deleted page Vector/Fields (Unlink)
- 23:45, 29 October 2024 PenguinEncounter talk contribs deleted page Vector/FieldIndex (Unlink)
- 23:41, 29 October 2024 PenguinEncounter talk contribs moved page Vector/FieldIndex to Template:Main:Vector/FieldIndex
- 23:41, 29 October 2024 PenguinEncounter talk contribs moved page Vector/Fields to Template:Main:Vector/Fields
- 23:41, 29 October 2024 PenguinEncounter talk contribs moved page Vector/MethodIndex to Template:Main:Vector/MethodIndex
- 23:41, 29 October 2024 PenguinEncounter talk contribs moved page Vector/Methods to Template:Main:Vector/Methods
- 23:40, 29 October 2024 PenguinEncounter talk contribs moved page Vector/OperatorIndex to Template:Main:Vector/OperatorIndex
- 23:40, 29 October 2024 PenguinEncounter talk contribs moved page Vector/Operators to Template:Main:Vector/Operators (trying to get this out of the search results)
- 04:36, 29 October 2024 PenguinEncounter talk contribs created page Vector/FieldIndex (New index) Tag: 2017 source edit
- 03:20, 29 October 2024 PenguinEncounter talk contribs moved page User:PenguinEncounter/Vector/Fields to Vector/Fields (Move to mainspace from user draft)
- 03:20, 29 October 2024 PenguinEncounter talk contribs moved page User:PenguinEncounter/Vector/Methods to Vector/Methods (Move to mainspace from user draft)
- 03:19, 29 October 2024 PenguinEncounter talk contribs moved page User:PenguinEncounter/Vector/OperatorIndex to Vector/OperatorIndex (Move to mainspace from user draft)
- 03:19, 29 October 2024 PenguinEncounter talk contribs moved page User:PenguinEncounter/Vector/Operators to Vector/Operators (Move to mainspace from user draft)
- 03:18, 29 October 2024 PenguinEncounter talk contribs moved page User:PenguinEncounter/Vector/MethodIndex to Vector/MethodIndex (Move to mainspace from user draft)
- 03:18, 29 October 2024 PenguinEncounter talk contribs moved page User:PenguinEncounter/Vector to Vector (Move to mainspace from user draft)
- 03:17, 29 October 2024 PenguinEncounter talk contribs created page User:PenguinEncounter/Vector/MethodIndex (Created page with "<includeonly>|- | length || Computes the length of the vector. |- | lengthSquared || Computes the squared length of the vector. |- | dot || Computes the dot product between vectors. |- | add ''in-place'' || Adds vectors. |- | subtract ''in-place'' || Subtracts vectors. |- | offset ''in-place'' || Adds a number to each component of the vector. |- | multiply ''in-place'' || Performs co...") Tag: 2017 source edit
- 03:09, 29 October 2024 PenguinEncounter talk contribs created page User:PenguinEncounter/Vector/Fields (Created page with "=== Swizzling === Swizzling is available for all vector types. For details, see Swizzling.") Tag: 2017 source edit
- 03:04, 29 October 2024 PenguinEncounter talk contribs created page User:PenguinEncounter/Vector/OperatorIndex (Created page with "<includeonly>| + (vector, vector) || Add two vectors. | + (vector, number) ''comm.'' || Add the number to each component of the vector. | + (vector, vector) || Subtract two vectors. | - (vector) || Negate the vector. | - (vector, number) || Subtract the number from each component of the vector. | - (number, vector) || Negate the vector, then add the number to each component...") Tag: 2017 source edit
- 02:54, 29 October 2024 PenguinEncounter talk contribs created page User:PenguinEncounter/Vector/Operators (Created page with "Lua operators, such as <code>+</code>, <code>-</code>, and <code>*</code>, apply to vectors and have different results. ==== + (operator) ==== ===== With two vectors <span id="meta_add_vv"></span> ===== ---- Adds the values from this vector and another vector of the same size. The result is a ''new'' vector of the same size which holds the sum. {| class="wikitable" ! Left !! Right !! Result |- | {{type|{{{T|Vector}}}}} | {{type|{{{T|Vector}}}}} | new {{type|{{{T|Vecto...") Tag: 2017 source edit
- 23:07, 27 October 2024 PenguinEncounter talk contribs created page Template:Sidebox/style.css (Created page with ".sidebox { float: right; padding: 0; width: 50vw; max-width: 200px; background-color: var(--x-bg); color: var(--x-color); } .sidebox > .mw-collapsible > .mw-collapsible-toggle { display: block; margin-right: 10px; } .sidebox > .mw-collapsible > .sidebox-header { padding: 10px; } .sidebox > .mw-collapsible > .sidebox-content { padding: 10px; background-color: var(--x-bg-2); }")
- 21:02, 27 October 2024 PenguinEncounter talk contribs created page Template:Sidebox (Created page with "<div style="float:right; padding: 10px; width: min(50vw, 300px); background-color: var(--color-surface-3, #202020); color: var(--color-base, #fff);"> <div class="mw-collapsible mw-collapsed"> <div>{{{2|{{{title|Additional information}}}}}}</div> <div style="clear:both;" class="mw-collapsible-content"> {{{1|{{{content}}}}}} </div> </div> </div><noinclude> Draws that side box with the collapsible text in it. <templatedata> { "params": { "title": { "aliases": [ "...") Tag: 2017 source edit
- 20:56, 27 October 2024 PenguinEncounter talk contribs created page User:PenguinEncounter/Vector/Methods (Created page with "=== Math operations === Mathematical operations that apply to all vectors, such as computing their length ==== length ==== ---- Computes the length of a vector. <div style="float:right; padding: 10px; width: fit-content(80%); background-color: var(--color-surface-2);"> <div class="mw-collapsible mw-collapsed"> <div>Nerdy math definition</div> <div style="clear:both;" class="mw-collapsible-content"> Computes the wikipedia:Norm (mathematics)#Euclidean norm|Euclidean nor...") Tag: 2017 source edit
- 20:41, 27 October 2024 PenguinEncounter talk contribs created page User:PenguinEncounter/Vector (Vector specific page) Tag: 2017 source edit
- 17:03, 27 October 2024 PenguinEncounter talk contribs created page Type/returns (Created page with "* <code>"{{{1}}}"</code> ({{type|{{{1}}}}})<noinclude> {{Notice/Warning|This page is meant to be transcluded and not displayed on its own.}} Displays the as a string, and a link to the type page. </noinclude>") Tag: 2017 source edit
- 17:02, 27 October 2024 PenguinEncounter talk contribs created page Type (Create WIP) Tag: 2017 source edit
- 06:49, 25 October 2024 PenguinEncounter talk contribs created page LogJson (Redirected page to PrintJson) Tags: New redirect Visual edit
- 06:47, 25 October 2024 PenguinEncounter talk contribs created page PrintJson (Created page with "{{lowercase}} {| class="wikitable" ! Arguments ! Returns |- | {{type|string...}} | {{Type|string}} |} Displays any amount of arguments without separators or the <code>[lua]</code> prefix. The return value is the displayed text without the formatting. If an argument is a {{type|string}}, it is interpreted as a [https://minecraft.wiki/w/Raw_JSON_text_format JSON text component], or if that fails, the string is displayed directly. All other types are displayed using [https...") Tag: 2017 source edit
- 06:25, 25 October 2024 PenguinEncounter talk contribs created page Template:Lowercase (Create template) Tag: 2017 source edit
- 06:22, 25 October 2024 PenguinEncounter talk contribs created page Module:Replace (Create module)
- 16:12, 24 October 2024 Admin talk contribs created page MediaWiki:Citizen-footer-tagline (meow)
- 18:27, 16 October 2024 TheKillerBunny talk contribs created page ParseJson (Created page with "{| class="wikitable" ! Arguments ! Returns |- | JSON: {{Type|string}} | {{Type|table}} |} Deserializes a JSON string into a table.<br /> See toJson")
- 18:26, 16 October 2024 TheKillerBunny talk contribs created page ToJson (Created page with "{| class="wikitable" ! Arguments ! Returns |- | Table: {{Type|table}} | {{Type|string}} |} Serializes a table into a JSON string")
- 15:36, 13 October 2024 TheKillerBunny talk contribs created page User:TheKillerBunny/Signature/Image (Created page with "<div style="display:inline-block;margin-top:6px;background:#f8f9fa;border:2px solid #777777;padding:0;"> {{{1}}} <hr style="background-color: black;" /> <p style="text-align:center;margin:0;padding:0;"> {{{2}}} </p> </div>")
- 18:37, 12 October 2024 TheKillerBunny talk contribs changed the content model of the page User:TheKillerBunny/Signature/style.css from "CSS" to "Sanitized CSS" (templateStyles)
- 18:33, 12 October 2024 TheKillerBunny talk contribs created page User:TheKillerBunny/Signature/style.css (Created page with ".image { display: inline-block; margin-top: 6px; width: 150px; background: #f8f9fa; border: 2px solid #777777; padding: 0; } .image p { text-align: center; margin: 0; padding: 0; }")
- 18:07, 12 October 2024 TheKillerBunny talk contribs created page User:TheKillerBunny/Signature (Created page with "<hr /><div style="margin-top:6px;width:150px;background:#f8f9fa;border:2px solid #777;">150px<hr /><center><p style="margin:-3px">Optical Media Is Peak</p></center></div>-@TheKillerBunny")
- 18:06, 12 October 2024 TheKillerBunny talk contribs created page User:TheKillerBunny/SignatureEmbed (Created page with "{{User:TheKillerBunny/Signature}}")
- 16:56, 12 October 2024 TheKillerBunny talk contribs created page User talk:TheKillerBunny (Created page with "This is a talk page I think")
- 16:49, 12 October 2024 TheKillerBunny talk contribs created page File:TKBunny-OpticalMediaIsPeak.svg
- 16:49, 12 October 2024 TheKillerBunny talk contribs uploaded File:TKBunny-OpticalMediaIsPeak.svg
- 16:46, 12 October 2024 TheKillerBunny talk contribs created page File:TheKillerBunny-Avatar.svg.svg
- 16:46, 12 October 2024 TheKillerBunny talk contribs uploaded File:TheKillerBunny-Avatar.svg.svg
- 21:53, 10 October 2024 TheKillerBunny talk contribs created page FiguraMetatables (Created page with "{{Stub}} figuraMetatables is a table containing the metatables for every type figura adds. Modifying this table will change the metatable on the respective type")