Remove start_game_remotedb.bat and edit start_game.bat

This commit is contained in:
John Cote 2015-05-23 00:53:15 -04:00
parent 7d43c23661
commit 5fd23d0933
3 changed files with 35 additions and 36 deletions

2
astron/.gitignore vendored
View file

@ -1,3 +1,3 @@
# We'll want production astron to be included, but not the debug builds
# Exclude the debug builds of Astron.
astrond_debug
astrond_debug.exe

View file

@ -1,36 +1,57 @@
@echo off
cd..
title TTS Game Launcher
title Toontown Stride Game Launcher
rem Read the contents of PPYTHON_PATH into %PPYTHON_PATH%:
set /P PPYTHON_PATH=<PPYTHON_PATH
echo Choose your game server!
echo #1 - Localhost
echo #2 - Custom
echo #3 - Loudrob
echo Choose your connection method!
echo.
echo #1 - Localhost
echo #2 - Dev Server
echo #3 - Custom
echo.
set /P INPUT=
set TTS_GAMESERVER=unset
if %INPUT%==1 set TTS_GAMESERVER=127.0.0.1
if %INPUT%==3 set TTS_GAMESERVER=71.200.196.180
set /P INPUT=Selection:
if %TTS_GAMESERVER%==unset (
if %INPUT%==1 (
set TTS_GAMESERVER=127.0.0.1
) else if %INPUT%==2 (
set TTS_GAMESERVER=167.114.220.172
) else if %INPUT%==3 (
echo.
set /P TTS_GAMESERVER=Gameserver:
) else exit
echo.
if %INPUT%==2 (
set /P ttsUsername="Username: "
set /P ttsPassword="Password: "
) else (
set /P TTS_PLAYCOOKIE=Username:
)
echo.
set /P TTS_PLAYCOOKIE=Username:
echo ===============================
echo Starting Toontown Stride...
echo ppython: %PPYTHON_PATH%
echo Username: %TTS_PLAYCOOKIE%
if %INPUT%==2 (
echo Username: %ttsUsername%
) else (
echo Username: %TTS_PLAYCOOKIE%
)
echo Gameserver: %TTS_GAMESERVER%
echo ===============================
%PPYTHON_PATH% -m toontown.toonbase.ClientStart
if %INPUT%==2 (
%PPYTHON_PATH% -m toontown.toonbase.ClientStartRemoteDB
) else (
%PPYTHON_PATH% -m toontown.toonbase.ClientStart
)
pause

View file

@ -1,22 +0,0 @@
@echo off
cd..
title Toontown Stride RemoteDB Launcher
rem Read the contents of PPYTHON_PATH into %PPYTHON_PATH%:
set /P PPYTHON_PATH=<PPYTHON_PATH
rem Get the user input:
set /P ttsUsername="Username: "
set /P ttsPassword="Password: "
set TTS_GAMESERVER=167.114.220.172
echo ===============================
echo Starting Toontown Stride...
echo ppython: %PPYTHON_PATH%
echo Username: %ttsUsername%
echo Gameserver: %TTS_GAMESERVER% (Steve's Dev Server)
echo ===============================
%PPYTHON_PATH% -m toontown.toonbase.ClientStartRemoteDB
pause