Gibbed Tools (supports x360 files now)
Gibbed Tools Rev 104
Convert pc bin to x360 bin + Create - Extract x360 bin - xml exe
Download
------------------------------------------------------------------------------------------------------------------------
Ok I'm making this thread to see if any one could help in converting PC (little-endian) assets to x360 (big-endian) assets as not all the xbox 360 files are mapped out and also the modding community is more interested in modding the PC version.
files compatible off the bat no editing needed.
1. DDS (PC Textures these work on x360)
files that can already be converted to and from Big-Endian
1. Bin Files (xml)
2. eex360z files (All other models)
3. blx360 (some sort of archive?)
4. x360 DDS (Textures, look further down the thread to see how to convert.)
files that currently cannot be converted (that i know of)
1. RBM (Character Models)
Big thanks going out to Rick for his tools to extract and edit these files much appreciated man.
------------------------------------------------------------------------------------------------------------------------
here are two drag and drop batch files for converting, extracting and making x360 bin files. (Gibbed tools needed place both batches inside the folder)
Create - Extract x360 bin - xml
Code: Select all
@echo off
MODE CON: COLS=91 LINES=4
title Create - Extract x360 bin - xml
if exist "Gibbed.Avalanche.FileFormats.dll" goto start
Echo Error: Please place this Batch/Exe in the folder containing the Gibbed Tools.
Pause>nul
Exit
:start
if "%~x1" == ".bin" goto bin
if "%~x1" == ".xml" goto xml
:bin
if not "%~x1" == ".bin" goto error
"%~p1\Gibbed.Avalanche.bin2xml" -b "%~1"
exit
:xml
if not "%~x1" == ".xml" goto error
"%~p1\Gibbed.Avalanche.xml2bin" -b "%~1" "%~pn1.bin"
exit
:error
echo:
echo drop an x360 .bin or .xml file on this bat file to extract/create an x360 .bin or .xml file
pause>nul
exitCode: Select all
@echo off
MODE CON: COLS=56 LINES=4
title Convert pc bin to x360 bin
if exist "Gibbed.Avalanche.FileFormats.dll" goto start
Echo Error: Please place this Batch/Exe in the folder
Echo containing the Gibbed Tools.
Pause>nul
Exit
:start
if not "%~x1" == ".bin" goto error
"%~p1\Gibbed.Avalanche.bin2xml" "%~1"
ren "%~1" "%~n1_PC%~x1"
"%~p1\Gibbed.Avalanche.xml2bin" -b "%~pn1.xml" "%~pn1.bin"
exit
:error
echo:
echo drop .bin file on this bat file to create x360 .bin file
pause>nul
exitUpdated the batches/exe files to know there in the correct folder.


