Difference between revisions of "Modding Tutorials"

From RimWorld Wiki
Jump to navigation Jump to search
Line 60: Line 60:
 
#* [[Modding Tutorials/ModSettings|Mod settings]] - Add settings to your mod
 
#* [[Modding Tutorials/ModSettings|Mod settings]] - Add settings to your mod
 
#* [[Modding Tutorials/DefModExtension|Def mod extensions]] - Add (custom) fields to Defs
 
#* [[Modding Tutorials/DefModExtension|Def mod extensions]] - Add (custom) fields to Defs
#* [[modding Tutorials/Custom Comp Classes|Custom Comp Classes]] - Learn to create your own [[Modding_Tutorials/ThingComp|ThingComp]]
+
#* [[Modding Tutorials/Custom Comp Classes|Custom Comp Classes]] - A quick overview of what types of Comps there are, and what they're suited for.
 +
#** [[Modding_Tutorials/ThingComp|ThingComp]] - Learn all there is to know about ThingComps.
 +
#** [[Modding Tutorials/GameComponent|Components]] - GameComponents, WorldComponents, and MapComponents
 
#* [[Modding_Tutorials/Compatibility_with_DLLs|Using Harmony to optionally patch other mods for the sake of compatibility]]
 
#* [[Modding_Tutorials/Compatibility_with_DLLs|Using Harmony to optionally patch other mods for the sake of compatibility]]
 
#* [[Modding Tutorials/TweakValues|TweakValues]] - Change values on the fly (handy for quick iteration!)
 
#* [[Modding Tutorials/TweakValues|TweakValues]] - Change values on the fly (handy for quick iteration!)
 
#* [[Modding Tutorials/ExposeData|ExposeData]] - Save stuff
 
#* [[Modding Tutorials/ExposeData|ExposeData]] - Save stuff
#* [[Modding Tutorials/Components|Components]] - Game, World, and Map Components
+
#* [[Modding Tutorials/BigAssListOfUsefulClasses|The big ass list of useful classes]] - A non-exhaustive list of classes you'll use most
#* [[Modding Tutorials/BigAssListOfUsefulClasses| The big ass list of useful classes]] - A non-exhaustive list of classes you'll use most
 
  
 
<br/><br/>
 
<br/><br/>

Revision as of 13:21, 1 February 2019

Basics Menus Game Creation Gameplay Pawns Plants Resources Gear Mods
Modding Modding Tutorials

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

  1. First Steps and Some Links
  2. Essence of Modding
  3. Exploring the Folder Structure
  4. Mod Folder Structure
  5. Recommended Software

General modding

XML tutorials

  1. XML File Structure
  2. Introduction to XML Defs
  3. In-depth XML Def tutorials
  4. (Added in Alpha 17) PatchOperations, replace specific xml elements of core files while keeping the rest untampered

C# tutorials

  1. Setting up
  2. Hello World
  3. Decompiling Source Code
  4. Writing Custom Code
  5. Introduction to Def Classes
  6. Alter Code at Runtime with Harmony - this is a best practice for modifying game code, replacing C# code injection to reduce Mod Conflicts
  7. The wonderful things you will want to do with C#
  8. Useful things:



Examples:

See also