User:Egocarib: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
(Rearrange the furniture and add a to-do list)
Line 1: Line 1:
{{Qud look
<div style="float:right;padding:0 3em 1em 3em;margin:1em;background:var(--qud-color-k-dark);">
| title={{Qud text|&Ce&cg&bo&Bca&br&ci&Cb|notxml}}
| text=A peculiar contraption.<br><br>Also known as {{Qud text|&Bexanguination microtubules|notxml}} in some parasangs.
}}
 
 
 
===My Pages===
===My Pages===
* [[/Sandbox]]
* [[/Sandbox]]
* [[/Sandbox/Sprites]]
* [[/Sandbox/Sprites]]


===Other Useful Pages===
===Other Useful Pages===
Line 15: Line 8:
* [[Special:CargoTables]]
* [[Special:CargoTables]]
* [[Special:Version]]
* [[Special:Version]]
</div>
{{Qud look
| title={{Qud text|&Ce&cg&bo&Bca&br&ci&Cb|notxml}}
| text=A peculiar contraption.<br><br>Also known as {{Qud text|&Bexanguination microtubules|notxml}} in some parasangs.
}}
{{Qud quote
|Wiki to do list:
* Revamp the [[Template:Item|Item]] infobox.
* Update the '''Inventory''' section of the [[Template:Character|Character]] infobox to show PV/Damage.
* Fix <code><nowiki><math></nowiki></code> equations so they don't overflow page containers.
* Improve or create some '''Modding''' articles.
* Eventually migrate [[MediaWiki:Mobile.css|Mobile.css]] styles into [[MediaWiki:Gadget-mobile.css|Gadget-mobile.css]] when things feel stable.
}}




===Example of how to use the debug console when editing/creating a Module===
===Example of how to use the debug console when editing/creating a Module===
 
<div style="font-family:'Source Code Pro';">
frame=mw.getCurrentFrame()<br>
frame=mw.getCurrentFrame()<br>
frame.args={someArg='this is the argument'}<br>
frame.args={someArg='this is the argument'}<br>
Line 28: Line 36:
mw.logObject(frame.args)<br>
mw.logObject(frame.args)<br>
:&lt;shows the full structure of the frames.args object&gt;
:&lt;shows the full structure of the frames.args object&gt;
 
</div>
 
===Etcetera===
* {{favilink | ubernostrum injector | plural}}
* {{favilink | Anti-gravity boots | plural}}
 
 
 
 




Line 42: Line 42:


&nbsp;
&nbsp;
__NOTOC__

Revision as of 14:04, 29 August 2019

My Pages

Other Useful Pages

egocarib

A peculiar contraption.

Also known as exanguination microtubules in some parasangs.

Perfect

Wiki to do list:

  • Revamp the Item infobox.
  • Update the Inventory section of the Character infobox to show PV/Damage.
  • Fix <math> equations so they don't overflow page containers.
  • Improve or create some Modding articles.
  • Eventually migrate Mobile.css styles into Gadget-mobile.css when things feel stable.



Example of how to use the debug console when editing/creating a Module

frame=mw.getCurrentFrame()
frame.args={someArg='this is the argument'}
val = frame.args.someArg
mw.log(val)

<outputs this is the argument>

val2 = frame:preprocess(val)

<expands any templates if they were passed into the argument>

mw.logObject(frame.args)

<shows the full structure of the frames.args object>