mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
27 lines
723 B
Bash
27 lines
723 B
Bash
|
#!/bin/sh
|
||
|
cd ..
|
||
|
|
||
|
export DYLD_LIBRARY_PATH=`pwd`/Libraries.bundle
|
||
|
export DYLD_FRAMEWORK_PATH="Frameworks"
|
||
|
|
||
|
# Get the user input:
|
||
|
read -p "Username: " ttuUsername
|
||
|
read -s -p "Password: " ttuPassword
|
||
|
echo
|
||
|
read -p "Gameserver (DEFAULT: 167.114.28.238): " TTU_GAMESERVER
|
||
|
TTU_GAMESERVER=${TTU_GAMESERVER:-"167.114.28.238"}
|
||
|
|
||
|
# Export the environment variables:
|
||
|
export ttuUsername=$ttuUsername
|
||
|
export ttuPassword=$ttuPassword
|
||
|
export TTU_PLAYCOOKIE=$ttuUsername
|
||
|
export TTU_GAMESERVER=$TTU_GAMESERVER
|
||
|
|
||
|
echo "==============================="
|
||
|
echo "Starting Toontown Unlimited..."
|
||
|
echo "Username: $ttuUsername"
|
||
|
echo "Gameserver: $TTU_GAMESERVER"
|
||
|
echo "==============================="
|
||
|
|
||
|
ppython -m toontown.toonbase.ClientStartRemoteDB
|