JustPaste.it

@echo off
color 0a
title Winkawaks Plux V1

:menu
echo **************************************************************
echo                    Romlist Winkawaks Plux
echo **************************************************************
echo.
echo Bienvenido %computername%
echo.
echo 1 - The King of Fighters 96 Aniversary
echo 2 - The King of Fighters 97 Yumeji
echo 3 - The King of Fighters 98 Aniversary
echo 4 - The King of Fighters 99 Aniversary
echo 5 - The King of Fighters 2002 PS2 Version
echo 6 - The King of Fighters 2002 PS2 Version Magic
echo 7 - The King of Fighters 2002 PS2 Version Omega
echo 8 - The King of Fighters 2002 PS2 Version Omega Magic
echo.
echo.
set /p rom=Teclea la opcion del juego a elegir  
echo.
echo.

if "%rom%" == "1" goto kof96lx
if "%rom%" == "2" goto kof97yk
if "%rom%" == "3" goto kof98ae
if "%rom%" == "4" goto kof99ae
if "%rom%" == "5" goto kof2002ps2
if "%rom%" == "6" goto kfps2mp
if "%rom%" == "7" goto k2ps2omg
if "%rom%" == "8" goto k2ps2oma
if not "%rom%" == "1,2,3,4,5,6,7,8" goto error

:kof96lx
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" kof96lx
@cls
goto menu

:kof97yk
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" kof97yk
@cls
goto menu

:kof98ae
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" kof98ae
@cls
goto menu

:kof99ae
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" kof99ae
@cls
goto menu

:kof2002ps2
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" kof2002ps2
@cls
goto menu

:kfps2mp
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" kfps2mp
@cls
goto menu

:k2ps2omg
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" k2ps2omg
@cls
goto menu

:k2ps2oma
echo.
echo En un momento...joven...
timeout /t 3 /noout
"WinKawaks.exe" k2ps2oma
@cls
goto menu

:error
echo.
echo Ahorita no joven, solo numeros del 1 al 8
echo Regresando al menu...joven
timeout /t 3 /noout
@cls
goto menu
pause>nul
exit