WARNING: Only one mod can be installed at once, until the MOD API is out. Please restore your client to default state, before installing a second mod.
After you have downloaded the ZIP of the mod you are trying to install, open it up, using WINRAR/7Zip (Windows Explorer can be used, but is known for his problems).
Now you need to find the Steam Scrap Mechanic folder. On Windows(32 bit) it is located at:
C:\Program Files\Steam\Steam\steamapps\[SteamAccount]\Scrap Mechanic
And in 64 bit:
C:\Program Files (x86)\Steam\Steam\steamapps\[SteamAccount]\Scrap Mechanic
For Linux/Mac use google.
In the ZIP you opened up earlier, you should find a "Data" folder. Extract/Drag it into the scrap mechanic folder, and choose "Replace" for all files.
In steam, choose the library tab and right click the scrap mechanic game.
Select “Properties” and choose the Local Files tab.
Then click on the “Verify Integrity Of Game Cache” button and it will restore your game to the default state.
This will be a tutorial on how to make the most basic mod to the game.
Knowledge needed:
So, the part of the game that is currently opened to us (we can edit) is a little strict and is made out of .conf .xml and .json files, those are the files we will edit.
To start open your scrap mechanic folder (See how to install a mod to find this folder) and go into the data folder.
We will start with the most basic thing, the loading text. What is the loading text? It’s the little text under the loading bar that shows when loading or unloading a world (“Did you know that if you put two toilet paper rolls on top of each other it will become a paper towel roll”).
So let’s change it to: Modified by YOUR_NAME_HERE.
The file as I said above is a .json file so you can edit it with a regular notepad. So, open your GUI folder and double click the “LoadingScreenTexts.json” file. Now in notepad you’ll see the something like this:
{This says to scrap: those are the LoadingTexts and then you list under “text”: The text you want to show up so just replace: "text": "Did you know that if you put two toilet paper rolls on top of each other it will become a paper towel roll"
to "text": "Modified By YOUR_NAME_HERE."
Now save the file and open up scrap mechanic and load a world and you’ll see your text under the loading bar!
Now will move to the second part, adding a block.
Let’s go back to the Data folder and this time open up the Objects folder and then open up the database folder.
Here again the files are a .json type so we can simply edit them in notepad so open up “basicmaterials.json” file and lets start editing.
So here are all the basic blocks or “Objects” in the game you can find all of them so let’s add a block copy the wood section:
{And paste it again under the wood so you’ll have two. Now let’s make it a little different so we will change the color under the “color”.
So currently the color is 9b683a and we want to change it so let’s open the website: http://www.colorpicker.com/ and choose a color in the color picker and then copy the code in the textbox above the picker and replace it with the current color I choose red (which is ff0000) so I will have red wood.
So now we have the block itself we need to add a name and a description for it in the inventory so we will go back to the Data folder then into the GUI folder and we will open the “InventoryItemDescriptions.json” file and we will find the wood block again so we will copy the wood again:
"2":And will paste it again beneath it so we will have two.
Now before we change it we need to change the “id” so it won’t overwrite the normal wood so change the “2”: to “3”: now we can edit it, so we can change the “title_1”: to red wood for example and change the description into a new wood added by YOUR_NAME_HERE.
Now that’s basically a simple mod you can explore the files and find many different things that you can add or make.
Until the MOD API is released, we are currently using a “cheaty” way to create mods.
That means, that we can’t really add functionality to blocks. Due to that, this section will be written only after the MOD API will be out or we will find a way to make the game less strict and to allow us to make better mods.