Skip to content

Making a mod 101

mc-oofert edited this page Oct 15, 2020 · 3 revisions

Creating a mod is fairly simple. ModInfo table contains your mods info displayed in the mod menu when loading. Patch table contains the operations to be done when loading

Example

Moved from the reddit thread.

{
"ModInfo": [
  {
	"title": "An interesting mod title.",
	"description": "This is a mod."
  }
  ],
  "Patch": [
    {
     "operation": "append",
      "path": "Animals.txt",
      "item": "ModCat.35.56.0.known for their sharp claws, and aggressive nature"
    },
    {
      "operation": "append",
      "path": "Animals.txt",
      "item": "ModDog.35.56.0.known for existing"
    }
  ]
}

Check these next:

Clone this wiki locally