-
Notifications
You must be signed in to change notification settings - Fork 0
Setting up your mod
Heres a quick and easy tutorial to set up your one turret mod!
It is highly encourged to check out these pages before continuing!
First, inside the mod menu, click the button labeled "open mod folder" in the top right.

Now, You have the location of your mod.
Start by adding a folder with the name of your mod, or really whatever you want.

then, we will be creating our moddata.json. Make sure moddata.json isnt in any folders!
Inside this moddata.json, for simplicity reasons, just copy and paste this into the json. "displayname": "ExampleMod1",
"creator": "kap",
"modver": 0.1,
"intendedgamever": 0.6,
"description":"this is an example mod!",
"identifier":"examplem"
After you copy and pasted it, change the "creator", "displayname", "description, and "identifier" values to whatever you see fit!
If you have a mod icon that you see fit, feel free to throw it into the mod outside of any folders simply called icon.svg or icon.png

Now, we can start adding folders on where your assets will be. Put down a folder in your mod, it can be called anything you want. You can have as many folders you want, and all images/jsons inside will attempt to load regardless of location.
Personally, I like to have both a 'assets' and 'data' folder

You set up your mod files! Now you may go to the next tutorial you see fit.