====== ArmA 2 Convert all PAA textures to TGA format ====== [[https://www.pmctactical.org/forum/viewforum.php?f=50|ArmA 2 Forum]], [[:arma2|ArmA 2 Home]], [[arma2:config|ArmA 2 Config]], [[arma2:file_formats|ArmA 2 File Formats]], [[arma2:missions|ArmA 2 Missions]], [[arma2:modeling|ArmA 2 3D Modeling]], [[arma2:scripting|ArmA 2 Scripting]], [[arma2:terrain|ArmA 2 Terrain]], [[arma2:texturing|ArmA 2 Texturing]], [[arma2:tools|ArmA 2 Tools]] 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