mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
ClientStart can screw off.
This commit is contained in:
parent
d0c0054e89
commit
059b7801cb
7 changed files with 38 additions and 38 deletions
|
@ -73,4 +73,4 @@ if pack and pack != 'default':
|
||||||
|
|
||||||
if not abort:
|
if not abort:
|
||||||
# Run
|
# Run
|
||||||
import toontown.toonbase.ClientStart
|
import toontown.toonbase.ToontownStart
|
||||||
|
|
|
@ -19,4 +19,4 @@ echo "Username: $ttsUsername"
|
||||||
echo "Gameserver: $TTS_GAMESERVER"
|
echo "Gameserver: $TTS_GAMESERVER"
|
||||||
echo "==============================="
|
echo "==============================="
|
||||||
|
|
||||||
ppython -m toontown.toonbase.ClientStart
|
ppython -m toontown.toonbase.ToontownStart
|
||||||
|
|
|
@ -23,4 +23,4 @@ echo "Username: $ttsUsername"
|
||||||
echo "Gameserver: $TTS_GAMESERVER"
|
echo "Gameserver: $TTS_GAMESERVER"
|
||||||
echo "==============================="
|
echo "==============================="
|
||||||
|
|
||||||
ppython -m toontown.toonbase.ClientStartRemoteDB
|
ppython -m toontown.toonbase.ToontownStartRemoteDB
|
||||||
|
|
|
@ -21,4 +21,4 @@ echo "Username: $ttsUsername"
|
||||||
echo "Gameserver: $TTS_GAMESERVER"
|
echo "Gameserver: $TTS_GAMESERVER"
|
||||||
echo "==============================="
|
echo "==============================="
|
||||||
|
|
||||||
ppython -m toontown.toonbase.ClientStart
|
ppython -m toontown.toonbase.ToontownStart
|
||||||
|
|
|
@ -60,11 +60,11 @@ echo ===============================
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
if %INPUT%==2 (
|
if %INPUT%==2 (
|
||||||
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ClientStartRemoteDB
|
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ToontownStartRemoteDB
|
||||||
) else if %INPUT%==4 (
|
) else if %INPUT%==4 (
|
||||||
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ClientStartRemoteDB
|
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ToontownStartRemoteDB
|
||||||
) else (
|
) else (
|
||||||
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ClientStart
|
"C:\Panda3D-1.10.0\python\ppython.exe" -m toontown.toonbase.ToontownStart
|
||||||
)
|
)
|
||||||
|
|
||||||
pause
|
pause
|
||||||
|
|
2
toontown/toonbase/ClientStart.py → toontown/toonbase/ToontownStart.py
Executable file → Normal file
2
toontown/toonbase/ClientStart.py → toontown/toonbase/ToontownStart.py
Executable file → Normal file
|
@ -58,7 +58,7 @@ if __debug__:
|
||||||
|
|
||||||
from direct.directnotify.DirectNotifyGlobal import directNotify
|
from direct.directnotify.DirectNotifyGlobal import directNotify
|
||||||
|
|
||||||
notify = directNotify.newCategory('ClientStart')
|
notify = directNotify.newCategory('ToontownStart')
|
||||||
notify.setInfo(True)
|
notify.setInfo(True)
|
||||||
|
|
||||||
from otp.settings.Settings import Settings
|
from otp.settings.Settings import Settings
|
2
toontown/toonbase/ClientStartRemoteDB.py → toontown/toonbase/ToontownStartRemoteDB.py
Executable file → Normal file
2
toontown/toonbase/ClientStartRemoteDB.py → toontown/toonbase/ToontownStartRemoteDB.py
Executable file → Normal file
|
@ -27,4 +27,4 @@ else:
|
||||||
os.environ['TTS_GAMESERVER'] = response['gameserver']
|
os.environ['TTS_GAMESERVER'] = response['gameserver']
|
||||||
|
|
||||||
# Start the game:
|
# Start the game:
|
||||||
import toontown.toonbase.ClientStart
|
import toontown.toonbase.ToontownStart
|
Loading…
Reference in a new issue