mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
19 lines
470 B
Bash
19 lines
470 B
Bash
#!/bin/sh
|
|
cd ..
|
|
|
|
# Get the user input:
|
|
read -p "Username: " ttuUsername
|
|
|
|
# Export the environment variables:
|
|
export ttuUsername=$ttuUsername
|
|
export ttuPassword="password"
|
|
export TTU_PLAYCOOKIE=$ttuUsername
|
|
export TTU_GAMESERVER="127.0.0.1"
|
|
|
|
echo "==============================="
|
|
echo "Starting Toontown United..."
|
|
echo "Username: $ttuUsername"
|
|
echo "Gameserver: $TTU_GAMESERVER"
|
|
echo "==============================="
|
|
|
|
/usr/bin/python2 -m toontown.toonbase.ClientStart
|