mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
32 lines
766 B
Batchfile
32 lines
766 B
Batchfile
@echo off
|
|
cd..
|
|
title TTS Local Game Launcher
|
|
set /P PPYTHON_PATH=<PPYTHON_PATH
|
|
|
|
echo Choose your game server!
|
|
echo #1 - Localhost
|
|
echo #2 - Loudrob
|
|
echo #3 - Custom
|
|
rem Steve's (dev server) can't be used here because it's set as the remotedb and this doesn't connect through that protocol
|
|
echo.
|
|
set /P INPUT=
|
|
|
|
if %INPUT%==1 set TTS_GAMESERVER=127.0.0.1
|
|
if %INPUT%==2 set TTS_GAMESERVER=71.200.196.180
|
|
if %INPUT%==3 (
|
|
echo.
|
|
set /P TTS_GAMESERVER=Gameserver:
|
|
)
|
|
|
|
echo.
|
|
set /P TTS_PLAYCOOKIE=Username:
|
|
|
|
echo ===============================
|
|
echo Starting Toontown Stride...
|
|
echo ppython: %PPYTHON_PATH%
|
|
echo Username: %TTS_PLAYCOOKIE%
|
|
echo Gameserver: %TTS_GAMESERVER%
|
|
echo ===============================
|
|
|
|
%PPYTHON_PATH% -m toontown.toonbase.ClientStart
|
|
pause
|