mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
22 lines
545 B
Batchfile
22 lines
545 B
Batchfile
@echo off
|
|
|
|
rem Read the contents of PPYTHON_PATH into %PPYTHON_PATH%:
|
|
set /P PPYTHON_PATH=<PPYTHON_PATH
|
|
|
|
rem Get the user input:
|
|
set /P ttuUsername="Username: "
|
|
|
|
rem Export the environment variables:
|
|
set ttuPassword=password
|
|
set TTU_PLAYCOOKIE=%ttuUsername%
|
|
set TTU_GAMESERVER=127.0.0.1
|
|
|
|
echo ===============================
|
|
echo Starting Toontown Unlimited...
|
|
echo ppython: %PPYTHON_PATH%
|
|
echo Username: %ttuUsername%
|
|
echo Gameserver: %TTU_GAMESERVER%
|
|
echo ===============================
|
|
|
|
%PPYTHON_PATH% -m toontown.toonbase.ClientStart
|
|
pause
|