oldschool-toontown/darwin/start-uberdog-server.sh

14 lines
423 B
Bash
Raw Normal View History

2021-06-26 19:22:08 -05:00
#!/bin/sh
cd ..
MAX_CHANNELS=999999
STATE_SERVER=4002
MESSAGE_DIRECTOR_IP="127.0.0.1:7199"
EVENT_LOGGER_IP="127.0.0.1:7197"
BASE_CHANNEL=1000000
/usr/local/bin/python3.9 -m toontown.uberdog.UDStart --base-channel ${BASE_CHANNEL} \
--max-channels ${MAX_CHANNELS} --stateserver ${STATE_SERVER} \
--messagedirector-ip ${MESSAGE_DIRECTOR_IP} \
--eventlogger-ip ${EVENT_LOGGER_IP}