mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
21 lines
590 B
Bash
21 lines
590 B
Bash
#!/bin/sh
|
|
cd ..
|
|
|
|
# Get the user input:
|
|
read -p "Username: " ttuUsername
|
|
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="password"
|
|
export TTU_PLAYCOOKIE=$ttuUsername
|
|
export TTU_GAMESERVER=$TTU_GAMESERVER
|
|
|
|
echo "==============================="
|
|
echo "Starting Toontown United..."
|
|
echo "Username: $ttuUsername"
|
|
echo "Gameserver: $TTU_GAMESERVER"
|
|
echo "==============================="
|
|
|
|
/usr/bin/python2 -m toontown.toonbase.ClientStart
|