bsp decompiler


(F0xdie) #1

I’d like to c wot the official maps are like in GtK-radiant, but all the bsp converters ive tried have sed that the file is the wrong type, u know one i can use or something else to do?


(Chruker) #2

I have this batch file to do this:

@ECHO OFF



:PATHS
SET MAP_NAME=fueldump
SET GAME_PATH="G:\Games\Wolfenstein - Enemy Territory"
SET MAP_PATH="G:\Games\Wolfenstein - Enemy Territory\etmain\maps"
SET Q3MAP2_PATH=E:\Q3MAP2\q3map2.exe

 

:Convert
SET CONVERT_VAR=-convert -format map



:OPTIONS
SET GEN_OPTIONS=-game et -fs_basepath %GAME_PATH% -fs_game %MAP_PATH% -v



:ACTION
START /BELOWNORMAL /WAIT /B %Q3MAP2_PATH% %CONVERT_VAR% %GEN_OPTIONS% %MAP_NAME%
PAUSE

Just edit the paths to fit your installation