If there is, plz let me know.

I modified the file "Vindictus Multitool" like below, but it did not work.



@EcHo off
color A
title Vindictus Killer/Multitool


:start
cls
echo Hello, MPGH user.
echo.
echo 1.Boot Vindictus
echo 2.Kill Vindictus
echo 3.Random Tools
echo 4.Quit

:invalid_choice
set /p choice=Enter your selection (1-4):
if %choice%==1 goto boot
if %choice%==2 goto kill
if %choice%==3 goto tools
if %choice%==4 exit
echo invalid choice: %choice%
goto invalid_choice

:boot
cls
start C:\Nexon\Heroes\ko-KR\Heroes
echo Going back to the menu...
pause
goto start

:kill
cls
taskkill /f /im heroes.exe
del C:\Nexon\Heroes\ko-KR\HShield\hshield.log
del C:\Nexon\Heroes\ko-KR\HShield\supdate.log
del C:\Nexon\Heroes\ko-KR\HShield\HSUpChk.log
del C:\Nexon\Heroes\ko-KR\HShield\Update\supdate.log
cd %UserProfile%
rmdir /s /q "Documents\마비노기 영웅전\오류보고"
echo Done.
exit

:tools
cls
echo Welcome to the tools section...
echo.
echo 1.Conditional Shutdown
echo 2.Command Prompt
echo 3.Back to menu

:invalid_choicetwo
set /p choice=Enter your selection (1-3):
if %choice%==1 goto shutdown
if %choice%==2 goto cmd
if %choice%==3 goto start
echo invalid choice: %choice%
goto invalid_choicetwo

:cmd
start cmd.exe
exit

:shutdown
cls
set /p sec=enter the number of seconds that you wish the computer to shutdown in:
set /p message=enter the shutdown message you wish to display:
shutdown.exe -s -f -t %sec% -c "%message%"
echo shutdown initiated at %time%
set /p cancel=type cancel to stop shutdown
if %cancel%==cancel shutdown.exe -a
if %cancel%==cancel goto