PMC websites shut down September 13th 2025 unless yearly web hosting fees are paid. Please Support PMC to help keep these websites online.

Enjoyed or found this pages content useful, please Support PMC to help me keep this web page online beyond september 13th 2025 when yearly web hosting fees are due.

User Tools

Site Tools


arma2:convert-all-paa-textures-to-tga-format

This is an old revision of the document!


Convert all PAA textures to TGA format

This how to guide shows you how to convert ArmA 2 PAA texture files into TGA format in a directory.

You need to have ArmA 2 bis tools installed, specifically pal2pace.exe and in our example .bat file its assumed to be in PATH, otherwise you need to include path to it.

convert_paa_to_tga.bat:

@echo off
md temp
FOR /F "tokens=1* delims=. " %%A in ('dir /b *.paa') do (
Pal2PacE %%A.paa temp\%%A.tga
)
move temp\*.tga .
rd temp
pause
exit
arma2/convert-all-paa-textures-to-tga-format.1477929686.txt.gz · Last modified: 2016/10/31 16:01 by snakeman