X Rebirth
64 avaliações
Steam Workshop for X Rebirth and X4
Por Ketraar e 1 colaborador(es)
With the Steam Workshop, finding and installing extensions for X games is now easier than ever before. There are separate Workshops for X Rebirth, X Rebirth VR Edition and X4: Foundations. Just browse the extensions in the Workshop for your game, subscribe to an extension that you are interested in, and it will be installed automatically the next time your start the game. Just make sure you read the description and check for incompatibilities with other subscribed extensions.

Extensions from the Workshop will also be updated automatically when the author submits updated content. To disable an extension on the next game start, just unsubscribe from it, either in-game or on the Steam website.

Note: Submitting content on the Steam Workshop is not possible with limited Steam user accounts.

X games on Steam with Workshop support:
The process of publishing an extension with the X Workshop Tool is almost the same for all listed games.
   
Premiar
+ favoritos
Nos favoritos
- favoritos
Useful Links Index
Links to translated versions of this guide

Links to modding tutorials and resources
General publishing rules
General rules and guidelines:
  • Do not publish extensions that you haven't made yourself, unless you have the author's consent.
  • Similarly, do not publish modifications of other people's extensions (e.g. fixed versions) without the author's consent.
  • Do not publish the same extension multiple times. If you are not sure if an upload worked, check your Workshop items online.
  • If your extension depends on other extensions or if it is potentially incompatible with other extensions, use the description text to warn players.
  • Extensions support localisation of name and description, but unfortunately the Steam Workshop does not. The title and description texts of Workshop items should be in English, unless you provide content specifically for a non-English audience. But even then, please make sure that English-speaking players can see from the title and description what the item is about.
Preparation
To publish an extension in the Workshop, you will need:
  • The X Tools[forum.egosoft.com] (formerly known as X Rebirth Tools)
  • The folder containing your extension files, including content.xml
  • A preview image file, for example a screenshot (must be either JPG or PNG). We recommend a widescreen format, size 640x360 or larger.

Further requirements:
  • You must have chosen a folder name. When the extension is downloaded or updated from the Workshop, it will be placed in this folder under "extensions" in the game installation folder.
    • Most likely you will be uploading directly from the extensions folder anyway. In that case you already have a folder name.
    • There are several naming restrictions:
      • Only the following characters are allowed in the folder name: a-z 0-9 . _ - and space.
      • The name is lower-case; any upper-case letters will be converted to lower-case automatically.
      • The name cannot be longer than 32 characters.
    • The game can handle multiple Workshop extensions using the same folder name, but there will be errors if a player subscribes to multiple of them simultaneously.
    • If there is a non-Workshop extension with the same folder name, the game will not touch that one, the player will have to resolve the conflict manually.
    • If your folder name is very generic and likely to be used by other extensions as well, consider changing it.
    • If you choose to rename your folder in an update, be aware of all consequences, e.g. don't forget to update your index files.
  • All game-relevant files must be stored in catalogs, but the Workshop tool can help you with that.
    • If there are no catalogs in your extension folder, you can use the switch -buildcat to build a catalog automatically.
    • To create catalogs manually you can use the catalog tool, included in X Tools.
    • Only these file types will be uploaded: *.cat, *.dat, *.cur, *.txt, *.pdf
    • If your extension has mouse cursor files (*.cur), they must be in the root folder, not in a sub-folder. Sub-folders are not uploaded.
  • Notes on content.xml:
    • The value of the id attribute has no relevance before publishing - it will be replaced with a Workshop-specific ID.
    • You need the attributes name and description in the <content> element. These will be used for the title and description of the published Workshop item.
      • To add line breaks in the description attribute, use &#10; (&#13;&#10; is also possible). \n does not work.
      • Title and description can be changed in the Steam Workshop after publishing.
      • The game displays the current title and description as set in the Steam Workshop, unless content.xml provides localised text for the game language.
      • We recommend not to include the version number in the name.
    • You need a version attribute. The value is the version multiplied by 100, so e.g. to display v2.50 you have to specify version="250".
    • By default, the "author" will be set to your public Steam community name. If you want to override this, set an author attribute in <content>.
    • You can have dependencies on other extensions, but these must already exist in the Workshop. Use the IDs from their content.xml files.
    • You can also have a dependency on the version of X Rebirth (i.e. the minimum required version). This is a dependency without an extension ID.

Example for a content.xml to publish a new extension:

<?xml version="1.0" encoding="utf-8" ?> <!-- My Test Extension v0.10 --> <content id="totally_unimportant" name="My Test Extension" description="This is just an example." version="10"> <!-- Requires Workshop item 12345, minimum version 1.00 --> <dependency id="ws_12345" version="100" /> <!-- Requires minimum game version 1.50 --> <dependency version="150" /> <!-- Optional localisation (NOTE: not visible in Steam Workshop, cannot be updated from Workshop website) --> <!-- German: --> <text language="49" name="Meine Test-Erweiterung" description="Dies ist nur ein Beispiel." /> </content>

Minimalistic example:

<?xml version="1.0" encoding="utf-8" ?> <content id="" name="Foo" description="Test" version="100"> </content>
Using the Workshop tool
The Workshop tool is contained in the X Tools. It's a command-line based tool, we don't have a GUI for it (yet). You'll need a command console to run it, and the easiest way to do it is to "Play" the X Tools. This will open the Windows command prompt in the X Tools folder, where WorkshopTool.exe is located.

(Note: If the tool app was already installed before it was renamed, the original folder name "X Rebirth Tools" will remain unchanged.)



Type WorkshopTool and press Enter. This will give you an overview of the available commands and switches. Don't be afraid, the tool will ask for confirmation before it uploads anything.
Publishing an extension
Important: You have to agree to the Steam Workshop Legal Agreement to upload any item to the Steam Workshop.

Imagine you have prepared an extension for X Rebirth in the "extensions" folder:
    ...\steamapps\common\X Rebirth\extensions\my first mod
You have also prepared a preview image (see above). It's called preview.jpg and you have put it in your extension folder ("my first mod"). Notice the lower-case folder name. Now it's time to run the WorkshopTool! Your command line to publish your mod will look like this, depending on the game:

Example for X Rebirth:
WorkshopTool publish -path "..\X Rebirth\extensions\my first mod" -preview "..\X Rebirth\extensions\my first mod\preview.jpg" -buildcat
Example for X Rebirth VR:
WorkshopTool publishvr -path "..\X Rebirth VR\extensions\my first mod" -preview "..\X Rebirth VR\extensions\my first mod\preview.jpg" -buildcat
Example for X4: Foundations:
WorkshopTool publishx4 -path "..\X4 Foundations\extensions\my first mod" -preview "..\X4 Foundations\extensions\my first mod\preview.jpg" -buildcat

You can only publish an extension for a game that you own on Steam, otherwise the corresponding publish-command will fail.

[You may also want to use the -tags switch, but tags are not implemented yet. Come back later to see if this has changed.]

You must be logged into Steam while the WorkshopTool is running.

So what is happening now?
  • We are not using the -foldername override switch here, so the WorkshopTool takes the actual folder name: "my first mod" (note that this is a bad name!)
  • We are not using the -contentdef override switch, so the WorkshopTool just takes the content.xml in the "my first mod" folder.
  • Since we haven't bothered to create catalog files manually, we use the -buildcat switch so the WorkshopTool does everything for us.
  • The catalog tool builds ext_01.cat / ext_01.dat, which will be included in the files to be uploaded. These catalog files will be deleted automatically when the WorkshopTool finishes. You can prevent the deletion with the switch -keepcatfiles, but in that case don't forget to update or delete the catalogs manually later!
  • The WorkshopTool validates the metadata in content.xml and shows some output. Please read it all and make sure there are no mistakes.
  • The tool will ask for confirmation: "Start upload to the Steam cloud (y/n)?" Type Y or N, respectively, and press Enter.
  • Just wait for the upload to finish. This can take some time. You can abort the upload with Ctrl+C.
  • When the upload finishes, some XML attributes will be written back to content.xml, most importantly the id attribute, which identifies the extension as a Workshop item.

After the successful upload you are asked if you want to open the Workhop item web page. You should do this for several reasons:
  • You may have to confirm the Steam Workshop Legal Agreement online.
  • Even after upload, the Workshop item will not be visible for other players yet. You will have to set the visibility on the Workshop item page (visible for everyone or only for friends)
  • On the item page you can directly change the title and description, without having to update your Workshop item.

If the web page tells you that the Workshop item does not exist, you are probably not logged in. Just log in to see your item.

If you want to come back to the page later, either create a bookmark in your browser, or run the WorkshopTool with the command showpage:
WorkshopTool showpage -path "..\X Rebirth\extensions\my first mod"

Usually, when you subscribe to an extension in the Workshop and start the game, it will be downloaded, potentially overwriting files from the previous version on the disk. This won't happen for your own extension because the WorkshopTool writes sync="false" into your content.xml after publishing. So you can safely keep your extension in the game folder while working on updates. (However, it's always a good idea to back up your files regularly.) If you want to enable synchronisation anyway, no problem: Go to the extension menu in-game, go to your extension and set "Updates" to "Yes".

A side effect of disabled updates is that the game will not update the name and description in your local content.xml when you change them on the Steam Workshop page. However, other players will see the updated name and description in their games.

Once players can see your extension in the Workshop, they can subscribe to it, and install it by starting the game. You disable the extension by unsubscribing from it. If players just delete the folder without unsubscribing, it will be downloaded again on the next game start.

If your extension has dependencies on other Workshop items, players have to subscribe to all of them manually, otherwise they will get an error message in the game. The dependency extensions will be shown in the in-game extension menu and can also be subscribed there.
Updating an extension
For updating an existing Workshop item, your command line could look like this:
WorkshopTool update -path "..\X Rebirth\extensions\my first mod" -buildcat -changenote "This is my first update"

Some things that are different from the publish command:
  • The -changenote switch is required for all updates. Write -changenote "" if you do not want to provide a description. You can also edit the change notes on the Workshop page after updating.
  • The WorkshopTool expects that you have increased the version number. If you deliberately keep the version number in your content.xml unchanged, use the -minor switch.
  • Usually an update does not affect the Workshop title and description. To upload the name and description attributes from content.xml to the Steam Workshop anyway, use the switch "-namedesc up" (without the quotes).
  • Changing the preview file is optional. If you want to change the preview file without uploading new content, use the command updatepreview instead of update.
  • It's possible to change the folder name of the extension. Important: Make sure that you do not do this accidentally, e.g. by uploading from a different folder! The WorkshopTool will show old and new folder names before you confirm the upload. Please check this output carefully.
  • After the upload, a few XML attributes will be written back to content.xml like when publishing, but the sync attribute is not added or changed. So in case you enabled updates after publishing the extension, they won't be disabled again.
  • The update command works for all supported X games. The corresponding game is automatically detected based on the Workshop item ID in the content definition.

When the game updates an extension, it checks the the downloaded content.xml for a game version requirement. If the extension requires a higher game version, the game discards the download (with a warning message) and continues to use the existing files on the disk. So if you as a Workshop author change the game version requirement, this will not break anyone's game. However, there are no such checks when you change dependencies on other Workshop extensions and their versions - the update will be applied anyway.
Supporting multiple game versions
In some cases you may want to provide different files for different game versions in the same Workshop extension. This is useful when Egosoft provides a beta of a new game version and you want to adjust your mod for this beta, without affecting all the players who still play the public version with your mod. For example, a new beta version could add new features that you want to include in your mod, or your mod could become incompatible and has to be fixed. You can use the beta phase to make the necessary changes, and support both the released version and the beta version at the same time.

This is how it works: As described in the catalog tool documentation, the game will search for a version catalog of the current game version in your extension folder, e.g. version 1.50 would look for ext_v150.cat. If it exists it will be used to override content from your other extension catalog(s).

If you do not use the catalog tool manually, the WorkshopTool can do all the work for you. For example, you have an extension that works with the current version of X Rebirth (let's say 1.50) and there is a beta for X Rebirth (let's say version 2.00). You want to make changes to your extension to prepare it for v2.00. This is what you do:
  • You create a sub-folder called "v150" for game version 1.50.
  • You copy *everything* from your existing extension folder into this folder (except for content.xml and previously existing version folders like "v140"). This is the content that players will see in game version 1.50.
  • In your normal extension folders you make the changes for version 2.00.
  • Set the required version of X Rebirth to 1.50 in content.xml, not 2.00, because this file is also used on v1.50. (If you allow game versions older than 1.50 then you should also provide version folders for these.)
  • When you are ready to upload the update, use the WorkshopTool with -buildvcat instead of -buildcat. It's basically the same, but -buildvcat also looks for such version folders. It will find v150 and build a diff catalog ext_v150.cat/dat. This will only contain files that are different from the 2.00 content.
  • Both catalogs ext_01 (with 2.00 content) and ext_v150 will be uploaded and provided to the players. Version 1.50 players will see the 1.50 content, and 2.00 beta players will see the new content (because ext_v150 is not loaded).
  • Once version 2.00 is released for everyone, feel free to remove the v150 folder and set the required game version to "200" in content.xml, unless you want to continue support for players who have disabled game updates but have enabled Workshop updates.

If you decide to build all your catalogs and the version catalog(s) manually, be aware that you should build them again on each update - the version catalogs must always be a diff to the current version.
Publishing an extension for both X Rebirth and X Rebirth VR Edition
It is possible to publish the same extension for both games, as follows:
  • Make sure that your extension is compatible with both games. There are subtle differences in XR VR that can cause problems for existing XR extensions, and vice versa.
    • If you need game-specific behaviour in scripts, you can detect in scripts whether you are in the VR version. That way you to use the same script in both games.
  • You will have two Workshop items, not one. Therefore, you need two content definition files, even if you use them with a single extension.
    • Have two copies of your content.xml, one for each game. You have to use the -contentdef switch when publishing and updating your extension.
    • Publish the extension twice: First with "publish", then with "publishvr", with the respective content definition files.
To update the extension for both games, run the "update" command for both Workshop items as described above.
16 comentário(s)
420Llamaz 29/abr./2021 às 20:04 
to run faster in x4 in stations. double tap ww and itll happen. I do it all the time :]
Kensei 6/mar./2019 às 13:51 
Also is the scripting done in C++?
Kensei 6/mar./2019 às 13:49 
Will the game recognize an FBX if I model a ship?
Derp 4/mar./2019 às 13:12 
If someone needs a simple job for getting warm with X4 modding: pls make a mod for faster movement speed on stations - will be a top 10 mod forever, I guarantee it!
thomas.krautzberger 26/dez./2017 às 7:51 
Workshop tool geht bei mir nicht . Hab Windows 10 pro
Draconix26 21/fev./2016 às 10:09 
I am having trouble with this especially with the guide cause it seems some of the stuff is out of date i was going to start with something simple like changing the ads on the stations but i cant find where they out theres something about down loading osr-universe but cant find that either ill look again but i would appreciate some guidance in modding thanks
Ketraar  [autor(a)] 7/fev./2016 às 15:09 
Its "hidden" in the useful links part at the very top.
Browser_ice 7/fev./2016 às 10:57 
its find an all but this workshop document only tells how to announce and distribute anything we change. It does not say how to change anything in Rebirth.

It should at least give some links toward that.
aladinaleks 13/ago./2015 às 0:15 
Unable to load the preview, and all the time - error code 25
aladinaleks 13/ago./2015 às 0:12 
e:\Games\Steam\SteamApps\common\X Rebirth Tools>WorkshopTool publish -path "..\X
Rebirth\extensions\alexalsp_shipyard" -preview "..\X Rebirth\extensions\alexals
p_shipyard\111.jpg"
X Rebirth Workshop Tool Version 1.04
Copyright (c) 2014 EGOSOFT
Dongle firmware E:\Games\Steam/controller_base/d0ggle.bin loaded, version 143586
9091.
Setting breakpad minidump AppID = 282160
Steam_SetMinidumpSteamID: Caching Steam ID: 76561198124670408 [API loaded no]
Logged in as user aladinaleks
Loading data...