content
FOR %%a IN (*.jmodel) DO A9Tool.exe %%a
Put the bat in the folder with the A9Tool etc.
Start this Bat and have a lot of fun with the FBX files

do not understand this part
Open a Text Document , write the above command in it and save it as .bat file. Replace .jmodel in it with .jtex to convert the textures.JONATHANTKB wrote: ↑Wed Feb 05, 2020 12:49 amCreate a9.bat with the editor
content
FOR %%a IN (*.jmodel) DO A9Tool.exe %%a
Put the bat in the folder with the A9Tool etc.
Start this Bat and have a lot of fun with the FBX files![]()
do not understand this part
i try to use this command but when i run .bat the PVRTexToolCLI say :Bigchillghost wrote: ↑Fri Jun 21, 2019 10:39 amCopy and paste the following batch command into a cmd file:taruncreation wrote: ↑Thu Jun 20, 2019 7:51 amIs there any way to use batch-operation to convert pvr to other format like png?Replace "YOUR_PATH" with the full path of your PVRTexToolCLI.exe then you can run it from any folder.Code: Select all
@echo off for %%f in (*.pvr) do ( YOUR_PATH\PVRTexToolCLI.exe -i "%%f" -d -f r8g8b8a8 ) pause