RimWorld

RimWorld

Nedostatek hodnocení
YADA
   
Ocenit
Přidat do oblíbených
Oblíbeno
Odebrat z oblíbených
Mod, 1.4
Velikost souboru
Přidáno
Aktualizováno
309.483 KB
4. kvě. 2023 v 22.08
19. kvě. 2023 v 11.20
Poznámky ke změnám (10) – zobrazit

Klikněte na „Odebírat“ pro stažení položky
YADA

V 1 kolekci od uživatele Zed
Zed's mods
18 položek
Popis
YADA: Yet Another Dev Assistant

0. XML Harmony patches!
So simple!

<YADA.PatchDef> <defName>YADA_freezeNeedsAtHalf</defName> <className>Need</className> <methodName>get_CurLevel</methodName> <postfix> <setResult>0.5</setResult> </postfix> </YADA.PatchDef>
Or a bit more complex:

<YADA.PatchDef> <defName>YADA_freezeNeedsAtMax</defName> <label>Freeze needs at max</label> <className>Need</className> <methodName>get_CurLevel</methodName> <postfix> <arguments> <li>ref __result</li> <li>__instance</li> </arguments> <opcodes> <!-- checkbox code is added automagically --> <li>Ldarg_0</li> <li>Ldarg_1</li> <li>Callvirt RimWorld.Need::get_MaxLevel</li> <li>Stind_R4</li> <!-- ret is added automagically --> </opcodes> </postfix> <debugSettingsCheckbox/> </YADA.PatchDef>
See the Patches[github.com] dir for more examples.

I bet you've dreamt of writing the CIL opcodes in XML )) Can be done now!

And as a bonus you'd get a free checkbox if <debugSettingsCheckbox/> is there. Category and default value is configurable.



1. .rimignore
Now you can filter files you upload to Steam, similar to .gitignore.

Add default .rimignore[github.com] file to your mod with a single click.

2. mod size is now shown before upload



3. All dev flags are now saved with the game
Like "god mode", "unlimited power", all draw flags, etc etc.
Only if dev mode is on.



4. Add translucent debug log overlay
toggled by "§" key, totally configurable.



5. Hediff severity +/- buttons
standard ctrl/shift modifier keys are honored



You may also like...


Links:

License: MIT
Počet komentářů: 6
Cedaro 11. kvě. 2024 v 3.58 
wish it can update to 1.5
Mute 8. čvc. 2023 v 15.47 
The ExpCompiler implementation is fascinating, I never considered just importing code from XML.
glencoe2004 26. čvn. 2023 v 16.19 
Harmony postfixes in XML? Absolutely wild
Lord Felix 3. čvn. 2023 v 20.15 
This mod is amazing thank you
Zed  [autor] 6. kvě. 2023 v 12.24 
@Mute cool! added my comments there)
Mute 6. kvě. 2023 v 0.34 
Nice! I've opened a pull request with some changes, hope they're useful to you.