12 lines
367 B
Batchfile
12 lines
367 B
Batchfile
|
@echo off
|
||
|
title Toontown Online - UberDOG Server
|
||
|
cd..
|
||
|
|
||
|
rem Read the contents of PPYTHON_PATH into %PPYTHON_PATH%:
|
||
|
set /P PPYTHON_PATH=<PPYTHON_PATH
|
||
|
|
||
|
"panda\python\ppython.exe" -m toontown.uberdog.UDStart --base-channel 1000000 ^
|
||
|
--max-channels 999999 --stateserver 4002 ^
|
||
|
--astron-ip 127.0.0.1:7199 --eventlogger-ip 127.0.0.1:7197
|
||
|
pause
|