﻿@echo off
echo "Choose your desired result"
echo "1. Android to PC"
echo "2. PC to Android"
set /p input="Enter your selection here: "
set /p fName="Input the name of the save: "

if /I "%input%" EQU "1" (
call PqSave_{0}.exe d %fName% temp.bin
call PqSave e temp.bin %fName%_MODTHIS
del /S temp.bin > NUL
)
if /I "%input%" EQU "2" (
call PqSave d %fName% temp.bin
call PqSave_{0}.exe e temp.bin %fName%_modded
del /S temp.bin > NUL
)

pause