Difference between revisions of "Modding Tutorials"
Jump to navigation
Jump to search
m (→C# tutorials) |
|||
Line 7: | Line 7: | ||
This is the table of contents for the modding tutorial. Here, you'll learn step by step how to create mods of gradually increasing complexity. | This is the table of contents for the modding tutorial. Here, you'll learn step by step how to create mods of gradually increasing complexity. | ||
− | In light of little official documentation, | + | In light of little official documentation, most of the knowledge here was gained by experience, trial-and-error, decompiling and learning from the source. Keep in mind that RimWorld is a big game that underwent substantial code changes during its alphas. Some information you find may be outdated. |
− | + | ----- | |
− | === | + | ===What's a mod?=== |
+ | A mod is a folder containing data the game reads/loads. Mods can add, remove or alter the content of other mods (including the Core mod) in the broadest sense of the word. For more info, see also [[Modding]]. | ||
+ | ===Introduction to modding=== | ||
# [[Modding Tutorials/First Steps|First Steps and Some Links]] | # [[Modding Tutorials/First Steps|First Steps and Some Links]] | ||
# [[Modding Tutorials/Essence| Essence of Modding]] | # [[Modding Tutorials/Essence| Essence of Modding]] | ||
− | |||
# [[Modding Tutorials/Folder structure|Exploring the Folder Structure]] | # [[Modding Tutorials/Folder structure|Exploring the Folder Structure]] | ||
# [[Modding Tutorials/Mod folder structure|Mod Folder Structure]] | # [[Modding Tutorials/Mod folder structure|Mod Folder Structure]] | ||
Line 56: | Line 57: | ||
==See also== | ==See also== | ||
* [https://github.com/roxxploxx/RimWorldModGuide/wiki Roxxploxx's set of modding tutorials] | * [https://github.com/roxxploxx/RimWorldModGuide/wiki Roxxploxx's set of modding tutorials] | ||
+ | * [https://spdskatr.github.io/RWModdingResources/ RimWorld Modding Resources - A hub for guides, modders, practical tips] | ||
[[Category:Modding]] | [[Category:Modding]] | ||
[[Category:Modding tutorials]] | [[Category:Modding tutorials]] |
Revision as of 09:27, 18 January 2019
|
This is the table of contents for the modding tutorial. Here, you'll learn step by step how to create mods of gradually increasing complexity.
In light of little official documentation, most of the knowledge here was gained by experience, trial-and-error, decompiling and learning from the source. Keep in mind that RimWorld is a big game that underwent substantial code changes during its alphas. Some information you find may be outdated.
What's a mod?
A mod is a folder containing data the game reads/loads. Mods can add, remove or alter the content of other mods (including the Core mod) in the broadest sense of the word. For more info, see also Modding.
Introduction to modding
- First Steps and Some Links
- Essence of Modding
- Exploring the Folder Structure
- Mod Folder Structure
- Recommended Software
General modding
XML tutorials
- XML File Structure
- Introduction to XML Defs
- In-depth XML Def tutorials
- (Added in Alpha 17) PatchOperations, replace specific xml elements of core files while keeping the rest untampered
C# tutorials
- Setting up
- Decompiling Source Code
- Writing Custom Code
- Introduction to Def Classes
- Alter Code at Runtime with Harmony - this is a best practice for modifying game code, replacing C# code injection to reduce Mod Conflicts
- Mod DLL Compatibility
- Distribution
Examples: