User:Egocarib: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
(Undo revision 83598 by Egocarib (talk))
Tag: Undo
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="float:right;padding:0 3em 1em 3em;margin:1em;background:var(--qud-color-k-dark);">
<div style="float:right;padding:0 3em 1em 3em;margin:1em;background:#0f3b3a;">
===My Pages===
===My Pages===
* [[/Sandbox]]
* [[/Sandbox]]
* [[/Sandbox/Sprites]]
* [[/Sandbox/Sprites]]
* [https://wiki.cavesofqud.com/Special:PrefixIndex?prefix=Egocarib&namespace=2 (full list)]


===Other Useful Pages===
===Other Useful Pages===
* [[Special:ExpandTemplates|Expand Templates]]
* [[Special:ExpandTemplates|Expand Templates]]
* [[Special:CargoTables|Cargo Tables]]
* [[Special:CargoTables|Cargo Tables]]
* [[Special:ApiSandbox|API Sandbox]]
* [[Special:Version|Version & Extensions]]
* [[Special:Version|Version & Extensions]]
* [[:Category:Caves_of_Qud_Wiki|Top-Level Category]]
* [[:Category:Caves_of_Qud_Wiki|Top-Level Category]]
* [[Special:Categories|All Categories]]
* [[Special:Categories|All Categories]]
* [[User:Teamtoto]]


===CSS===
===CSS===
Line 15: Line 18:
* [[MediaWiki:Mobile.css|Mobile.css]]
* [[MediaWiki:Mobile.css|Mobile.css]]
* [[MediaWiki:Gadget-mobile.css|Gadget-mobile.css]]
* [[MediaWiki:Gadget-mobile.css|Gadget-mobile.css]]
* [[MediaWiki:Hydradark.css|Hydradark.css]]
* [[MediaWiki:Vector.css|Vector.css]]
* [[MediaWiki:Hydradark.css|Hydradark.css]] (no longer used)
 
===User CSS===
* [[/common.css|common.css]]
* [[/mobile.css|mobile.css]]
* [[/hydradark.css|hydradark.css]]
* [[/vector.css|vector.css]]
 
===JS===
* [[MediaWiki:Common.js|Common.js]]
* [[MediaWiki:Mobile.js|Mobile.js]]
 
===User JS===
* [[/common.js|common.js]]
* [[/mobile.js|mobile.js]]
</div>
</div>
{{Qud look
{{Qud look
| title={{Qud text|&Ce&cg&bo&Bca&br&ci&Cb|notxml}}
| 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.
| text=A peculiar contraption.<br><br>Also known as {{Qud text|&Bexsanguination microtubules|notxml}} in some parasangs.
}}
}}
{{Qud quote
{{Qud quote
|Wiki to do list:
|Wiki to do list:
* Revamp the [[Template:Item|Item]] infobox.
* Add cargo queries to Damage page showing all things that cause certain types of damage (would require storing more data in Cargo that isn't currently)
* Update the '''Inventory''' section of the [[Template:Character|Character]] infobox to show PV/Damage.
* Revisit [[Template:Item|Item]] and [[Template:Character|Character]] infoboxes.
* <s>Update the '''Inventory''' section of the [[Template:Character|Character]] infobox to show PV/Damage.</s>
** Add better hover tooltips to the '''Inventory''' section
* Fix <code><nowiki><math></nowiki></code> equations so they don't overflow page containers.
* 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.
* Eventually migrate [[MediaWiki:Mobile.css|Mobile.css]] styles into [[MediaWiki:Gadget-mobile.css|Gadget-mobile.css]] when things feel stable.
** (not sure if this is still accurate/relevant after wiki move)
}}
}}






=== Page Values ===
Add <code>?action=pagevalues</code> to the end of a page URL to see its page values, including cargo store data.


===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===

Latest revision as of 21:47, 22 December 2022

My Pages

Other Useful Pages

CSS

User CSS

JS

User JS

egocarib

A peculiar contraption.

Also known as exsanguination microtubules in some parasangs.

Perfect

Wiki to do list:

  • Add cargo queries to Damage page showing all things that cause certain types of damage (would require storing more data in Cargo that isn't currently)
  • Revisit Item and Character infoboxes.
  • Update the Inventory section of the Character infobox to show PV/Damage.
    • Add better hover tooltips to the Inventory section
  • Fix <math> equations so they don't overflow page containers.
  • Eventually migrate Mobile.css styles into Gadget-mobile.css when things feel stable.
    • (not sure if this is still accurate/relevant after wiki move)



Page Values

Add ?action=pagevalues to the end of a page URL to see its page values, including cargo store data.

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>