Implement 40250 classic client port

This commit is contained in:
shenlei
2026-09-01 18:49:28 +09:00
parent 2277b1dd60
commit 8f61990a83
481 changed files with 169826 additions and 293 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/sh
set -eu
cli=${MTGODOT_CLASSIC_E2E:-}
if [ -z "$cli" ]; then
build_root=${MTGODOT_CLASSIC_BUILD:-build-classic}
cli="$build_root/net_classic_e2e_host"
fi
if [ ! -x "$cli" ]; then
echo "run_classic_e2e.sh: missing $cli; build with -DMTGODOT_BUILD_NET_TOOLS=ON" >&2
exit 2
fi
host=${MT40250_GAME_HOST:-127.0.0.1}
port=${MT40250_GAME_PORT:-13000}
: "${MT40250_ACCOUNT_ID:?set MT40250_ACCOUNT_ID}"
: "${MT40250_ACCOUNT_PASSWORD:?set MT40250_ACCOUNT_PASSWORD}"
slot=${MT40250_CHARACTER_SLOT:-0}
timeout=${MT40250_E2E_TIMEOUT_SECONDS:-30}
exec "$cli" "$host" "$port" "$MT40250_ACCOUNT_ID" "$MT40250_ACCOUNT_PASSWORD" "$slot" "$timeout"