2015-05-18 21:11:33 -05:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import requests
|
|
|
|
from pandac.PandaModules import *
|
|
|
|
|
|
|
|
|
|
|
|
username = os.environ['ttsUsername']
|
|
|
|
password = os.environ['ttsPassword']
|
|
|
|
|
|
|
|
accountServerEndpoint = ConfigVariableString(
|
|
|
|
'account-server-endpoint',
|
2015-05-18 21:28:54 -05:00
|
|
|
'http://tigercat1.me/tmpremote/api/').getValue()
|
2015-05-18 21:11:33 -05:00
|
|
|
request = requests.post(
|
|
|
|
accountServerEndpoint + 'login/',
|
|
|
|
data={'n': username, 'p': password})
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = json.loads(request.text)
|
|
|
|
except ValueError:
|
|
|
|
print "Couldn't verify account credentials."
|
|
|
|
else:
|
|
|
|
if not response['success']:
|
|
|
|
print response['reason']
|
|
|
|
else:
|
|
|
|
os.environ['TTS_PLAYCOOKIE'] = response['token']
|
2015-06-05 00:32:41 -05:00
|
|
|
|
2015-05-18 21:11:33 -05:00
|
|
|
# Start the game:
|
2015-06-04 18:59:27 -05:00
|
|
|
import toontown.toonbase.ClientStart
|