rm-NoobInCoding / UnrealReZen

UnrealReZen is a modding tool for packing utoc and ucas files (Unreal Engine Zen Loader archive files)
GNU General Public License v3.0
106 stars 10 forks source link

Error: Output path must contain .utoc extension even tho it has it included #39

Closed switterbeet closed 1 month ago

switterbeet commented 1 month ago

grafik

I get that error even tho my path has .utoc included

This is my full command: UnrealReZen.exe --content-path X:\SteamLibrary\steamapps\common\LOLLIPOP CHAINSAW RePOP\lollipop\Content\Paks\Blood_P --compression-format Zlib --engine-version GAME_UE5_3 --game-dir X:\SteamLibrary\steamapps\common\LOLLIPOP CHAINSAW RePOP\lollipop\Content\Paks --output-path X:\SteamLibrary\steamapps\common\LOLLIPOP CHAINSAW RePOP\lollipop\Content\Paks\Blood_P.utoc

rm-NoobInCoding commented 1 month ago

All of you paths contains space ' ' character. Please use double quotation " before and after the paths

For example: UnrealReZen.exe --content-path "X:\SteamLibrary\steamapps\common\LOLLIPOP CHAINSAW RePOP\lollipop\Content\Paks\Blood_P" --compression-format Zlib --engine-version GAME_UE5_3 --game-dir "X:\SteamLibrary\steamapps\common\LOLLIPOP CHAINSAW RePOP\lollipop\Content\Paks" --output-path "X:\SteamLibrary\steamapps\common\LOLLIPOP CHAINSAW RePOP\lollipop\Content\Paks\Blood_P.utoc"

switterbeet commented 1 month ago

Thanks!!