User Tools

Site Tools


arma3:batch-file-examples

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
arma3:batch-file-examples [2019/01/22 17:43] – updated for arma3 and latest mikero tools -P parameter. snakemanarma3:batch-file-examples [2024/08/03 11:45] (current) – links added. snakeman
Line 1: Line 1:
-====== Batch File Examples ======+====== ArmA 3 Batch File Examples ======
  
-This is under arma3 namespace but there are various batch file examples which suit all arma games or even generic tasks that has nothing to do with arma.+[[https://www.pmctactical.org/forum/viewforum.php?f=68|ArmA 3 Forum]], [[:arma3|ArmA 3]], [[arma3:config|ArmA 3 Config]], [[arma3:missions|ArmA 3 Missions]], [[arma3:modeling|ArmA 3 3D Modeling]], [[arma3:scripting|ArmA 3 Scripting]], [[arma3:terrain|ArmA 3 Terrain]], [[arma3:texturing|ArmA 3 Texturing]], [[arma3:tools|ArmA 3 Tools]] 
 + 
 +This is under ArmA 3 namespace but there are various batch file examples which suit all arma games or even generic tasks that has nothing to do with arma.
  
  
Line 304: Line 306:
 echo %year%-%month%-%day% echo %year%-%month%-%day%
 </code> </code>
 +
 +
 +====== Resize PAA Command Line ======
 +
 +Resize PAA file from command line.
 +
 +This does all PAA files to 128 x 128 resolution in the current directory:
 +<code dos>
 +for /R %CD% %%i in (*.paa) do (
 +echo %%i
 +"<steam>\steamapps\common\Arma 3 Tools\ImageToPAA\imagetopaa.exe" -size=128 %%i %%i
 +)
 +pause
 +exit
 +</code>
 +
arma3/batch-file-examples.1548179025.txt.gz · Last modified: 2019/01/22 17:43 by snakeman