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

From SCS Modding Wiki
Jump to navigation Jump to search

Preparing mod

To upload mod to Steam Workshop you need to setup few new files and folders your mod. Steam Workshop mods have ability to be compatible with multiple versions so you need to define which data game should use.

0002 create folder.jpg 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.
0003 create latest folder.jpg After creating of the folder open it and create another folder inside called latest (the name can be different however we recommend calling it latest) - in this place you will put data files of your mod (all files from your mod which you put inside My Documents/Euro Truck Simulator 2/mod/ directory) that will be compatible with all the game versions. (Instead of folder you can also create ZIP archives with game data)
0004 open text editor and create versions sii.jpg Open your favorite text editor (we will be using Sublime Text 3 for the tutorial) and create file called versions.sii - save it in the same folder where you created latest folder
0005 fill versions sii with magic and global sii scope.jpg Add sii file frame to your versions.sii file.
SiiNunit
{

}
0006 add package version info for latest version.jpg Add definition of latest version unit.
SiiNunit
{
package_version_info : .latest
{

}
}
0007 add folder attribute to latest info.jpg Set folder to name of the folder or ZIP archive with the mod data.
SiiNunit
{
package_version_info : .latest
{
    folder: "latest"
}
}

When you do those points and put your game content to folder/archive 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

0008 create folder for 122 content.jpg In case you have data that supports one exact game version you need to create folder or archive where you will store the content.
0009 add new unit to versions sii with 122 content step 1.jpg Open your text editor and do exatly the same steps as you did while adding definition for latest patch. (Besides different folder and unit name)
SiiNunit
{
package_version_info : .latest
{
    folder: "latest"
}

package_version_info : .122_content
{
    folder: "122_content"
}
}
0010 add new unit to versions sii with 122 content step 2.jpg There is new thing. You need to set value of the compatible_versions attribute. This attribute is simply array containing strings that are masks of the game versions. 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 however for workshop mods we are using versions specified in versions.sii.
SiiNunit
{
package_version_info : .latest
{
    folder: "latest"
}

package_version_info : .122_content
{
    folder: "122_content"
    compatible_versions[]: "1.22.*"
}
}
0011 create multiversion folder.jpg In case you want to support more than one exact version you need to setup folder for it.
0012 add another unit to versions sii.jpg Add again the same definition for the unit.
SiiNunit
{
package_version_info : .latest
{
    folder: "latest"
}

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

package_version_info : .120_121_content
{
    folder: "120_121_content"
}
}
0013 add first version attribute.jpg Add compatible_version value for one patch you support.
SiiNunit
{
package_version_info : .latest
{
    folder: "latest"
}

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

package_version_info : .120_121_content
{
    folder: "120_121_content"
    compatible_versions[]: "1.20.*"
}
}
0014 add second version attribute.jpg And add again compatible_version value for second patch you want to support.
SiiNunit
{
package_version_info : .latest
{
    folder: "latest"
}

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

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

Uploading

Scs workshop uploader tutorial preview.jpg

  • Run SCS Workshop Uploader tool from your steam client.
  1. Select the game (1) that is compatible with your mod.
  2. Select New item from the items combobox (2). It should be selected by default when you launch the tool.
  3. In the Mod data section - browse for a mod data folder (3).
  4. If you select folder, browse for mod preview image (4).
  5. In next step fill mod name (5).
  6. Select mod visibility in steam workshop. If it's Private, Friends only or Public (6).
  7. Fill your mod description (7) 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. (8)
  9. Now, you have to select type tag for your mod (9).
  10. You can select truck parts and brand tag if appropriate (10).
  11. You can now fill change note of your mod (11). 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 (12).. Before the actual upload operation the tool will check if your mod contains correct data.

TODO: Describe why writing for example 1 cyrillic character counts as 2, why onee space is count as character and why enter is count as character.

TODO: Describe howto find the tool in steam client and link installation tutorial

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

0025 in case of error you will get this dialog.jpg

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.


TODO: Error log screenshot here & link to frequent problems and solutions (missing manifest.sii)


  • In case you click Continue button mod will start uploading.
  • In case mod has been successfuly uploaded you will see this dialog.

0026 upload success.jpg

However it is possible that there was some failure - 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.

OLD

  1. Create folder where you will put your mod content.
  2. Put version specific content into appropriate folders - you can zip those folders. TODO: What are those "appropriate" folders?
  3. Create file called versions.sii where you put package version info units. TODO: Describe how to write this definition file with some examples
  4. When you prepare everything launch SCS Workshop Uploader tool from your Steam Client.
  5. Select the game which will be the target application for your workshop creation.
  6. In "Mod data" section
    1. Select folder with your mod content. You need to select the root folder of your mod this where you have placed your versions.sii file and version folders or archives.
    2. Browse for preview image. The maximum size of the file is 1 MB.
  7. In the next section
    1. fill the Mod name (maximum 128 characters)
    2. select visibility state (if the mod is private, friends only or public).
  8. In "Description" section fill your mod description - the minimum amount of characters is 50 characters - maximum is 8000. (We count one byte as characters so in case you are using multibyte characters it will count as more than one (also new lines, spaces count as character))
  9. In "Tags" section
    1. You MUST select Type of your mod
    2. Truck parts and Brand are optional
  10. In "Change note" you specify changelog of new mod version - in this case you can leave it empty or simply write there something like "Initial release" or "First version release".
  11. When you are done you can press Upload button. In case validation failed or some different problem happened you will be informed by proper dialog.

500px 500px 500px 500px 500px 500px 500px 500px 500px 500px