diff --git a/astron/darwin/astrond b/astron/darwin/astrond new file mode 100644 index 0000000..3cf36c1 Binary files /dev/null and b/astron/darwin/astrond differ diff --git a/astron/darwin/libbson-1.0.0.0.0.dylib b/astron/darwin/libbson-1.0.0.0.0.dylib new file mode 100644 index 0000000..80e369d Binary files /dev/null and b/astron/darwin/libbson-1.0.0.0.0.dylib differ diff --git a/astron/darwin/libbsoncxx.3.6.5.dylib b/astron/darwin/libbsoncxx.3.6.5.dylib new file mode 100644 index 0000000..94de957 Binary files /dev/null and b/astron/darwin/libbsoncxx.3.6.5.dylib differ diff --git a/astron/darwin/libmongoc-1.0.0.0.0.dylib b/astron/darwin/libmongoc-1.0.0.0.0.dylib new file mode 100644 index 0000000..f88e22f Binary files /dev/null and b/astron/darwin/libmongoc-1.0.0.0.0.dylib differ diff --git a/astron/darwin/libmongocxx.3.6.5.dylib b/astron/darwin/libmongocxx.3.6.5.dylib new file mode 100644 index 0000000..0e62739 Binary files /dev/null and b/astron/darwin/libmongocxx.3.6.5.dylib differ diff --git a/astron/darwin/libuv.1.dylib b/astron/darwin/libuv.1.dylib new file mode 100644 index 0000000..c58bd06 Binary files /dev/null and b/astron/darwin/libuv.1.dylib differ diff --git a/astron/darwin/libyaml-cpp.0.6.3.dylib b/astron/darwin/libyaml-cpp.0.6.3.dylib new file mode 100644 index 0000000..6853d01 Binary files /dev/null and b/astron/darwin/libyaml-cpp.0.6.3.dylib differ diff --git a/darwin/start-ai-server.sh b/darwin/start-ai-server.sh new file mode 100644 index 0000000..38a8e86 --- /dev/null +++ b/darwin/start-ai-server.sh @@ -0,0 +1,14 @@ +#!/bin/sh +cd .. + +BASE_CHANNEL=401000000 +MAX_CHANNELS=999999 +STATE_SERVER=4002 +MESSAGE_DIRECTOR_IP="127.0.0.1:7199" +EVENT_LOGGER_IP="127.0.0.1:7197" +DISTRICT_NAME="Toon Valley" + +/usr/local/bin/python3.9 -m toontown.ai.AIStart --base-channel ${BASE_CHANNEL} \ + --max-channels ${MAX_CHANNELS} --stateserver ${STATE_SERVER} \ + --messagedirector-ip ${MESSAGE_DIRECTOR_IP} \ + --eventlogger-ip ${EVENT_LOGGER_IP} --district-name "$DISTRICT_NAME" diff --git a/darwin/start-astron-server.sh b/darwin/start-astron-server.sh new file mode 100644 index 0000000..f13f805 --- /dev/null +++ b/darwin/start-astron-server.sh @@ -0,0 +1,6 @@ +#!/bin/sh +cd ../astron/darwin + +# This assumes that your astrond build is located in the +# "astron/darwin" directory. +./astrond --loglevel info ../config/astrond.yml diff --git a/darwin/start-game.sh b/darwin/start-game.sh new file mode 100644 index 0000000..25e9e3e --- /dev/null +++ b/darwin/start-game.sh @@ -0,0 +1,8 @@ +#!/bin/sh +cd .. + +# TODO: Make this actually work, to change token in the meantime, +# change the fake-playtoken variable in etc/Configrc.prc. +export LOGIN_TOKEN=dev + +/usr/local/bin/python3.9 -m toontown.toonbase.ToontownStart diff --git a/darwin/start-uberdog-server.sh b/darwin/start-uberdog-server.sh new file mode 100644 index 0000000..5f4ade3 --- /dev/null +++ b/darwin/start-uberdog-server.sh @@ -0,0 +1,13 @@ +#!/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}