Check out our discord at https://discord.gg/3u69jMa 

Republic Commando UCC: Difference between revisions

From SWRC Wiki
Jump to navigation Jump to search
Created page with "UCC is a command line utility for early Unreal Engine games to execute Commandlets. Star Wars Republic Commando ships without one, but a custom one has been made available as a result of reverse engineering. Latest UCC build included in Fix: [https://github.com/SWRC-Modding/CT/releases here] File:Uccshow.PNG '''Batchexport Commandlet''' This commandlet can parse the games resource archives in order to export any exportable type in bulk. Here is the syntax for co..."
 
No edit summary
Line 11: Line 11:


<code>./ucc.exe batchexport exampletexturepackage.utx texture tga ".\\ExampleOutputFolder"</code>
<code>./ucc.exe batchexport exampletexturepackage.utx texture tga ".\\ExampleOutputFolder"</code>


In particular, UCC can extract batches of sounds from the UAX archives where Republic Commando's voice lines and sound effects are stored. The batchexport commandlet does this.
In particular, UCC can extract batches of sounds from the UAX archives where Republic Commando's voice lines and sound effects are stored. The batchexport commandlet does this.


See how to extract game audio using UCC for details.
See how to extract game audio using UCC for details.

Revision as of 16:43, 18 May 2024

UCC is a command line utility for early Unreal Engine games to execute Commandlets. Star Wars Republic Commando ships without one, but a custom one has been made available as a result of reverse engineering.

Latest UCC build included in Fix: here


Batchexport Commandlet

This commandlet can parse the games resource archives in order to export any exportable type in bulk. Here is the syntax for converting some texture package, called "exampletexturepackage.utx" from the game into a set of tga files in ExampleOutputFolder:

./ucc.exe batchexport exampletexturepackage.utx texture tga ".\\ExampleOutputFolder"


In particular, UCC can extract batches of sounds from the UAX archives where Republic Commando's voice lines and sound effects are stored. The batchexport commandlet does this.

See how to extract game audio using UCC for details.