Files
gtav-src/tools_ng/script/art/make_cutxml_psoready.bat
T
2025-09-29 00:52:08 +02:00

13 lines
392 B
Batchfile
Executable File

REM converts attribute lists into cutfAttribute format, if it hasn't already been done
call setenv.bat
for /R %RS_ASSETS%\cuts\ %%i in (*.cutxml) do (
findstr cutfAttributes %%i > NUL
if ERRORLEVEL 1 ( REM Really means >= 1
echo converting: %%i
%RS_TOOLSBIN%\batchsub.py -p %RS_TOOLSSCRIPT%\art\cutxml_ref_to_value.txt %%i
) else (
echo already converted: %%i
)
)
more