Holas a todos/as diseñadores/programadores o plagiadores/hantraxs.
Tengo un servidor de lineage2, y me gustaria hacer un lanzador (launcher). Tengo uno, que es asi, lo encontre por ahi, pero me gustaria crearlo en un .exe y con una interfaz grafica:
@echo off
color 0c
title L2 GoldAge Server
set dns=goldage.no-ip.info
set www=www.l2.raya-net.es
:question
cls
echo.
echo.
echo --------------------------------------------
echo - GoldAge L2 Server - AutoPlay Script
echo - ---------------------------------------- -
echo - -
echo - Opcion + Enter: -
echo - -
echo - Tipea "p" para jugar -
echo - Type "w" para la web -
echo - Type "q" para quitar -
echo - -
echo --------------------------------------------
set /p question= - Tu Eleccion:
if "%question%" == "p" goto play
if "%question%" == "w" goto news
if "%question%" == "q" goto end
goto question
:news
explorer http://%www%
goto question
:play
echo Por Favor espera...
ping -n 1 %dns% |FIND "statistics" > TEMPIP.txt
FOR /F "tokens=2 delims=for" %%a in (TEMPIP.txt) do set IP=%%a
del TEMPIP.txt
set IP=%IP:1%
set IP=%IP:0,-1%
type %windir%\system32\drivers\etc\hosts> %windir%\system32\drivers\etc\hosts.bak
echo 127.0.0.1 localhost> %windir%\system32\drivers\etc\hosts
echo %ip% L2authd.lineage2.com>> %windir%\system32\drivers\etc\hosts
start /w /system/l2.exe
type %windir%\system32\drivers\etc\hosts.bak> %windir%\system32\drivers\etc\hosts
del %windir%\system32\drivers\etc\hosts.bak
:end
Gracias