Hi guys, here is my batch script :
Let's explain.
I the user anwser y, %S1% in the 3dstool line should be replaced with -xutf, if the user anwser n, %S1% should be replaced with -xtf.
But it's not working, no matter what I try, so where I'm wrong?
Code:
@echo off
echo.
set /p S0=Y or N :
if /i %S0%==Y (SET %S1%=xutf) ELSE (SET %S1%=xtf)
3dstool.exe -%S1% exefs DecryptedExeFS.bin --exefs-dir ExtractedExeFS --header HeaderExeFS.bin
pause
Let's explain.
I the user anwser y, %S1% in the 3dstool line should be replaced with -xutf, if the user anwser n, %S1% should be replaced with -xtf.
But it's not working, no matter what I try, so where I'm wrong?
Last edited by Asia81,
