SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial

SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial 1 - steamsplay.com
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial 1 - steamsplay.com

This will describe the creation of add-ons and its further publication.
 
The manual does not contain detailed scripting documentation!
 
 

Let’s started

Greetings to everyone who needs this guide now. Who exactly? For some people who want to make their own “Mod Pack” which will change: models, textures and sounds.
 
 
Before we start, I want to say: this guide is just a translation of the Russian manual, therefore there may be some mistakes. i recommend you to go to the official website, where you can find more detailed information about the development of addons.
 
 
Here: https://scpcb-wiki.herokuapp.com/en/home – [herokuapp.com] 
 
 
In this guide, you will learn:
 
– Pack creation and writing of its content.
 
– Preparing files for retexture.
 
– Writing a simple .GS file for compilation.
 
– Publishing the Pack itself.
 

 
Let’s start with the first step
 
 
 

1st stage – Preparation

All we need is the tools with which we will work, since the developers specially left these tools in the root folder of the game.
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 9BD339C
 
 
In this folder “SteamWorkshopUploader” contains the tools we need:
 
1. ScriptsCompiler compiles .GS files.
 
2. WorkshopContent contains future Packs.
 
3. SteamWorkshopUploader.exe name speaks for itself. (Uploading addons / Packs)
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 9F8D620
 
 
In the first step, we need to open “SteamWorkshopUploader.exe”.
 
A window will open for us in which your future “mod packs” will be displayed in the left edge.
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 5E0AEC1
 
 
In the lower left corner, you can create a new Mod Pack and indicate its name in the text box.
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 15C5D55
 
 
I will call the upcoming Pack “BatEveryDay”.
 
 
Soo we need to decide in advance on the content of our pack.
 
You already figured out what to do, right?
 
 
When you clicked on the “Create Item” button, a sort of another part of the window will appear.
 
Also, you ALREADY created a page in the Workshop.
 
In this window we need:
 

  • Indicate an image (avatar, icon, etc.).
  • Specify the name of the mod pack.
  • Provide a description.
  • Specify Tags (Textures, Sounds, Models)
  • Specify the type of visibility (I advise you to set Private for a start).
  • In the text box “Enter change note” you indicate the change (for example: first version, bug fix, adding something.).

 
In my case, I filled it in like this:
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 537F6C5
 
 
Now there is a new folder in the Ā«WorkshopContentĀ» folder with the name you entered in the lower left corner earlier. There is also a new file Ā«[Name] .workshop.jsonĀ».
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 79DC9F0
 
 
Your folder(for example BatEveryDay), roughly speaking, is an archive with textures, sounds, models and scripts. (In my case, only with textures)
 
 
Because my archive is a substitute for battery textures, then I can just simply drop the files into this folder without any problems, however, this is not convenient if you will create large mod packs. I recommend creating folders for sorting or whatever is more convenient for you. And so, I just created a Textures folder to store future textures.
 
 
These textures will replace the original textures found in the game folder.
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 1st stage - Preparation - 90E3C88
 
 
Let’s move on to the second stage.
 
 
 

2nd Stage – Writing the GS file

In short: the 2nd stage is just an indication of the files A to replace B with the help of code (or script) and for compilation in the .GSC format, which should be in our package.
 
 
Without a .GSC file, your Mod Pack will not work.
 
 
Go to the “ScriptsCompiler” folder and create a file with any name with the “.GS” format.
 
When the file will be created: right-click> edit (or open with …).
 
 
An example of an open document window:
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 2nd Stage - Writing the GS file - D9F5C2F
 
 
Now we need to indicate what I wrote above, namely, indicate the path of A and B.
 
 
It should be written like this:
 
RedirectFile(“[ORIGINAL FILE PATH – A]”, getscriptpath()+”[NEW FILE PATH – B]”)
 
 
Example with replacing the texture:
 
RedirectFile(“GFX\items\Battery\Battery 9V.jpg”, getscriptpath()+”\Textures\Battery 9V.jpg”)
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 2nd Stage - Writing the GS file - 276D556
 
 
When you are sure that your .GS “script” with the specified paths is ready, save and proceed to compilation of the file.
 
 
To compile the file, we need to open “compiler.exe”, and write the command “compile [NAME].gs” (GS file must be located in the same folder with the program). If you wrote something wrong, the program will tell you why and for what reason. And if all is well, then the program will write “Compiled to [NAME] .gsc”.
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 2nd Stage - Writing the GS file - 6E1C212
 
 
When the .GSC file is ready, then we need to upload it to our mod pack:
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 2nd Stage - Writing the GS file - 77B9D51
 
 
IMPORTANT: do not add other files like readme.txt to the mod pack, otherwise the game will not start (but you can put that another folder in mod pack).
 
 
If you wanna make something better then use offisial site for that:
 
https://scpcb-wiki.herokuapp.com/en/home – [herokuapp.com] 
 
 
 

3rd stage – Check mod Pack

To check the mod pack you need to copy files from your pack, and put it in the “workshop/youraddons”. “workshop” folder which is located in the root folder of the game.
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 3rd stage - Check mod Pack - 9DFE1A6
 
 
Then, start the game.
 
You must make sure that the mod pack works correctly and everything suits you.
 
 
When you are sure that your mod pack is ready, you can proceed to the 4th stage.
 
 
 

4th stage – Publication

Congratulations on your new “Mod Pack”, if you made it of course…
 
 
In the last step we will need “SteamWorkShopUploader.exe” again.
 
When you open the program, you need to select your mod in the right corner and make sure that everything is correctly written and does not violate the principles of the Steam community.
 
 
About the “Tags” text box:
 
If your mod is a retexture, then write “Textures”, but if your mod also changes sounds and models, then write “Textures, Models, Sounds”. It is important that each tag is spelled correctly and sealed.
 
 
Now you, for sure, want to publish your mod pack? Well then, to do this, click “Submit [MOD NAME]” and preferably indicate “change” in the appropriate text field.
 
 
If everything went well, then you should see this inscription:
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 4th stage - Publication - C000035
 
 
Now this mod pack should be displayed in your workshop:
 
 
SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial - 4th stage - Publication - A2D0529
 
 
 

The End

This is the end of this tutorial. Hope I helped you!
 
 
It’s worth saying that it is a simple matter to checkout your mod pack in the Steam Workshop, therefore it does not require any clarification. When you finally make the page, do not forget to open access to all people so that it can be displayed in the Workshop.
 
 

 
 
Hope you enjoy the post for SCP: Containment Breach Multiplayer How to Create Add-Ons & Mod Pack Tutorial, If you think we should update the post or something is wrong please let us know via comment and we will fix it how fast as possible! Thank you and have a great day!
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*