Poodletooth-iLand/dev/win32/start-game.bat

71 lines
1.4 KiB
Batchfile
Raw Normal View History

2015-03-03 16:10:12 -06:00
@echo off
title Toontown Stride Game Launcher
echo Choose your connection method!
echo.
2015-03-07 16:06:21 -06:00
echo #1 - Localhost
echo #2 - Dev Server
echo #3 - Custom
echo #4 - Local RemoteDB
2015-03-07 16:06:21 -06:00
echo.
2015-05-27 03:22:15 -05:00
:selection
set INPUT=-1
set /P INPUT=Selection:
if %INPUT%==1 (
set TTS_GAMESERVER=127.0.0.1
) else if %INPUT%==2 (
set TTS_GAMESERVER=167.114.220.172
) else if %INPUT%==4 (
set TTS_GAMESERVER=127.0.0.1
) else if %INPUT%==3 (
2015-03-07 16:06:21 -06:00
echo.
2015-06-05 00:32:41 -05:00
set /P TTS_GAMESERVER=Gameserver:
2015-05-27 03:22:15 -05:00
) else (
goto selection
)
echo.
if %INPUT%==2 (
set /P ttsUsername="Username: "
set /P ttsPassword="Password: "
) else if %INPUT%==4 (
set /P ttsUsername="Username: "
set /P ttsPassword="Password: "
) else (
set /P TTS_PLAYCOOKIE=Username:
2015-03-07 16:06:21 -06:00
)
echo.
2015-03-03 16:10:12 -06:00
echo ===============================
2015-05-16 20:04:41 -05:00
echo Starting Toontown Stride...
echo ppython: "C:\Panda3D-1.10.0\python\ppython.exe"
if %INPUT%==2 (
echo Username: %ttsUsername%
2015-06-05 00:32:41 -05:00
) else if %INPUT%==4 (
echo Username: %ttsUsername%
) else (
echo Username: %TTS_PLAYCOOKIE%
)
2015-05-16 20:04:41 -05:00
echo Gameserver: %TTS_GAMESERVER%
2015-03-03 16:10:12 -06:00
echo ===============================
2015-05-29 05:03:48 -05:00
cd ../../
if %INPUT%==2 (
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ClientStartRemoteDB
) else if %INPUT%==4 (
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ClientStartRemoteDB
) else (
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ClientStart
)
2015-05-22 22:47:35 -05:00
pause