Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Here is some more information for the 1.69 version update:
This update displays the following error on the X4 Extension settings:
ws_2268673409 .... Location 'x2shippack' already used by another extension.
That is a big clue.
Please fix I need to get back to my game. Thanks for your great work.
Just an FYI. Hope this helps.
I had the same issue with 1.69 and now again with 1.70.
The way to fix this on the user side is to:
- close game
- make backups
- delete all 3 directories 'ws_2268673409', 'x2shippack' and 'x2shippack_bak' - those should be versions 1.69, 1.68 and 1.67 respectively in your case
They are located in 'extensions' when you click "Browse local files" in Steam.
- restart the game, mod will be re-installed automatically
I don't know how or even if this is fixable on the mod author's side. To me it seems more like an issue with how the integration and update process in the game works.
Edit: Looked at the date of the original post and changed the mod versions to be 1 lower each
I discovered that one of the old directories is LOW CASE the other directory name is all UPPER CASE. Then the system complains because the XML file is referencing one of these. The Steam Update system updates the wrong Directory Name because it is confuse between the UPPER and LOWER case names.
I think that is a major part of the update issue. On a Windows system the UPPER and LOWER cases will not matter much so there should not be an error if you are using windows to update these directories. However, if you are using Linux the error will occur.
Anyway, from now on I will be updating manually instead of using STEAM.
Anrum.gallente, I love the mod. I hope the information above will help you automate the update process. It might be a quick fix.
- cd $gamefolder # eg: cd "/games/steamapps/common/X4 Foundations"
- mv extensions extensions.bak
- mkdir extensions
- dd if=dd if=/dev/zero of=extensions.img bs=1024 count=15728640 # this will create a (roughly) 15GB image file for the mods. choose size depending on your needs
- mkfs -t ext4 -O casefold extensions.img
- sudo mount extensions.img extensions
- sudo rm "extensions/lost+found"
- sudo chattr +F extensions
- sudo chown $(whoami):$(id -gn) extensions
- cp -R extensions.bak/* extensions/
don't forget to add an fstab-entry for the image or remember to remount before launching the game after a reboot. it's not a perfect solution by any means, but I think a workable workaround for these kinds of problems
edit: missed two commands
No one should have to do the above steps on something that should work out of the box.
It is a good idea but not for most people.
thanks.