Open main menu

Tutorials/SCS Workshop Uploader/How to upload new mod?

< Tutorials‎ | SCS Workshop Uploader
Revision as of 11:35, 5 February 2016 by ErykDwornicki (talk | contribs) (Supporting specify version of the game)

Contents

Introduction

In this tutorial we will show you how to prepare your mod for uploading it to the workshop step by step.

Workshop mod files and directories layout

First of all - the layout of your mod will change a little bit. The standard mod is a single package with manifest.sii file inside, description and icon files and the mod data files. The Workshop mod can and should consist of many packages - this change gives you possibility to create mods that are supporting few game patches without need to activate different mod by your mod users. In the versions.sii file you specify which package game should use when using the specified game patch. But remember - this layout is only correct for Workshop mods. Standard mods are still using the one package approach.

 

Prepearing mod for uploading step by step

1   First step of preparing your mod is creating of the folder. You will put there all the files and folders needed for your mod to be compatible with Steam Workshop.
2   After creating of the folder open it and create another folder inside called universal. (Instead of folder you can also create ZIP archives with game data)
3   The universal directory (or archive) should contain all the standard mod package content so: manifest.sii file, description file, icon file and the mod content.

Remember! In Workshop mods manifest.sii, description and icon files are required!

4   Open your favorite text editor and create file called versions.sii - save it in the same folder where you created universal folder
5   Add sii file frame to your versions.sii file.
SiiNunit
{

}
6   Add definition of universal version unit.
SiiNunit
{
package_version_info : .universal
{

}
}
7   Set package_name to name of the folder or ZIP archive with the mod data.
SiiNunit
{
package_version_info : .universal
{
    package_name: "universal"
}
}

When you do those points and put your game content to package you and you don't want to support exact patches you can skip next points and go to Uploading part.

Supporting specify version of the game

1   In case you have data that supports one exact game version you need to create folder or archive where you will store the content.


TIP: For better organization of the directories. We recommend to call this folder 122_content - 122 stands for 1.22 version with removed dot. For example - for 1.23 update it will be 123, for 1.6 it will be 16 etc.

2   Open your text editor and do exatly the same steps as you did while adding definition for universal patch. (Besides different folder and unit name)
SiiNunit
{
package_version_info : .universal
{
    package_name: "universal"
}

package_version_info : .122_content
{
    package_name: "122_content"
}
}
3   There is new step you have to take. Set the value of the compatible_versions attribute. As we want to have data for 1.22 patch simply write there "1.22.*". Values are similar to compatible_versions array in manifest.sii.

If you want to use this package for 1.23 patch only you will write:

compatible_versions: "1.23.*"

If you want to support only one patch by this content (not recommended) you will write:

compatible_versions[]: "1.22.1"

The value of this attribute can contain numbers, dots "." (between numbers) and asterisk "*" (at the end). Using asterisk inside text or at the beginning is not allowed.

SiiNunit
{
package_version_info : .universal
{
    package_name: "universal"
}

package_version_info : .122_content
{
    package_name: "122_content"
    compatible_versions[]: "1.22.*"
}
}
4   In case you want to support more than one exact version you need to setup folder for it.


TIP: We recommend using similar syntax as for single version specify content, but for separating the versions use underscore "_". For example if the content will be used by both 1.23 and 1.24 content package will be called: "123_124_content" in case you want the content package to be used for 1.24, 1.25.0 and 1.25.2 updates the content package will be called "124_1250_1252_content".

5   Add again the same definition for the unit.
SiiNunit
{
package_version_info : .universal
{
    package_name: "universal"
}

package_version_info : .122_content
{
    package_name: "122_content"
    compatible_versions[]: "1.22.*"
}

package_version_info : .120_121_content
{
    package_name: "120_121_content"
}
}
6   Add compatible_version value for one patch you support.
SiiNunit
{
package_version_info : .universal
{
    package_name: "universal"
}

package_version_info : .122_content
{
    package_name: "122_content"
    compatible_versions[]: "1.22.*"
}

package_version_info : .120_121_content
{
    package_name: "120_121_content"
    compatible_versions[]: "1.20.*"
}
}
7   And add again compatible_version value for second patch you want to support.
SiiNunit
{
package_version_info : .universal
{
    package_name: "universal"
}

package_version_info : .122_content
{
    package_name: "122_content"
    compatible_versions[]: "1.22.*"
}

package_version_info : .120_121_content
{
    package_name: "120_121_content"
    compatible_versions[]: "1.20.*"
    compatible_versions[]: "1.21.*"
}
}

Uploading

 

  • Run SCS Workshop Uploader tool from your steam client.
  1. Select the game that is compatible with your mod.
  2. Select New item from the items combobox. It should be selected by default when you launch the tool.
  3. In the Mod data section - browse for a mod data folder.
  4. If you select folder, browse for mod preview image.
  5. In next step fill mod name.
  6. Select mod visibility in steam workshop. If it's Private, Friends only or Public.
  7. Fill your mod description which will be shown in your item workshop page. (Minimum 50 characters)
  8. If you want to know formatting possibilities click on the question mark button.
  9. Now, you have to select type tag for your mod.
  10. You can select truck parts and brand tag if appropriate.
  11. You can now fill change note of your mod. If you need to have the edit box bigger simply resize the tool window. As it's initial upload step you will more likely write nothing here - or write something like "Initial upload.".
  12. If you did all the points simply click Upload button. Before the actual upload operation the tool will check if your mod contains correct data.

Validation

  • In case of any validation error you will notice this dialog.

 

When you click OK you will see log dialog with all errors and warnings that occured during validation. In case if you have only warnings you can both continue or abort operation. In case of error you need to fix them before uploading.


 


  1. In this line you have the summary of the validation - the number of errors and warnings.
  2. In this area you have log of the validation. All the log entires have the following form: [TYPE] [CODE] (file): Message
  3. Bellow you have two checkboxes, you can hide warnigns or errors here.
  4. In case there are only errors you are able to only click Abort. This button simply aborts the upload.
  5. In case there are only warnings you can click this button and continue uploading of your mod. If there are errors you are unable to continue - you have to fix the problems.

Success

If there are no errors and the upload will continue on successfull upload you will see this dialog.

 

However it is possible that there was some failure while uploading - you will then notice dialog with the error message. If you have some problem with resolving the problem write on our forum click todo moding section (Create Steam Workshop section dedicated to it?)

Steam Workshop Terms Of Service

If it’s your first mod and you were not doing any mods for other game you will likely get error about not accepted Steam Workshop Terms Of Service - if so happends tool will show you appropriate message and the steam workshop terms of service will be opened in your default web browser - you have to login to your steam account read and accept the terms of service and if you do so simply go back to the tool and try again with uploading your mod.