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
make cmd file and put these things and run boom done
@echo "Starbound Dragon Paks Puller V1.0"
pause
set CurrentModPath="C:\Program Files (x86)\Steam\steamapps\workshop\content\211820"
set FileFormat="pak"
set CurrentModPath=%CurrentModPath:"=%
set FileFormat=%FileFormat:"=%
for /r "%CurrentModPath%" %%I in (.) do echo F|Xcopy "%CurrentModPath%\%%~nxI\*.%FileFormat%" "%CurrentModPath%\%%~nxI.%FileFormat%"
pause
If you run this powershell script inside the workshop\content\211820 folder it will rename each "contents.pak" to the folder it resides in name then you can just do a *.pak search (this finds for all files that are .pak) from within the 211820 folder and grab them all and move them to the Mods folder in Starbound folder, stops mods from updating as well.
Powershell script is here -
$currentDirectory = Get-Location
Get-ChildItem -Path $currentDirectory -Directory | ForEach-Object {
$folderPath = $_.FullName
$contentsPakPath = Join-Path -Path $folderPath -ChildPath "contents.pak"
if (Test-Path -Path $contentsPakPath) {
$newName = Join-Path -Path $folderPath -ChildPath "$($_.Name).pak"
# Rename 'contents.pak' to the parent folder name
Rename-Item -Path $contentsPakPath -NewName $newName
Write-Output "Renamed '$contentsPakPath' to '$newName'"
}
}
Write-Output "Renaming completed."
yes contents.pak to something