mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-09 14:22:55 +00:00
Python-based bot tool that rapidly connects/disconnects to the server using the full LCE protocol (PreLogin, Login, cipher handshake, identity tokens, keepalive). Configurable concurrent bots, hold times, burst joins, movement packets, and duration. Includes batch files for common test scenarios (basic, aggressive, movement, burst, endurance).
9 lines
347 B
Batchfile
9 lines
347 B
Batchfile
@echo off
|
|
REM Aggressive: short holds, fast ramp - hammers the players.erase() path
|
|
set /p HOST="Server IP [127.0.0.1]: " || set HOST=127.0.0.1
|
|
set /p PORT="Server Port [19132]: " || set PORT=19132
|
|
if "%HOST%"=="" set HOST=127.0.0.1
|
|
if "%PORT%"=="" set PORT=19132
|
|
python "%~dp0stress_test.py" %HOST% %PORT% --bots 12 --hold 0.5 2 --ramp 0.2
|
|
pause
|