Auto decode ULL files and open them in hex editor
I got bored using the a3ull manually and made a batch file to automatically decode and open the decoded file in xvi32.
You will have to modify the commands to suit the paths that you have installed a3ull & xvi32 or any other hex editor you may have.
Here it is,copy/paste it in a bat file and then use the "open with" explorer option to relate the batch file with the ULL files.
Code:
@ECHO OFF
MKDIR C:\ULLTEMP
c:\a3server\tools\a3ull /d %1 c:\ulltemp\%~nx1.bin
c:\a3server\tools\hex\xvi32 c:\ulltemp\%~nx1.bin
HTH