Add multiplayer latency test plan

This commit is contained in:
2026-05-18 15:18:31 -07:00
parent d4ea10c628
commit 3b772da73c
5 changed files with 180 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
@echo off
setlocal
echo Agrarian MVP latency test profiles
echo.
echo Clean LAN:
echo Net PktLag=0
echo Net PktLagVariance=0
echo Net PktLoss=0
echo.
echo Mild WAN:
echo Net PktLag=80
echo Net PktLagVariance=20
echo Net PktLoss=1
echo.
echo Rough WAN:
echo Net PktLag=160
echo Net PktLagVariance=40
echo Net PktLoss=3
echo.
echo Reset:
echo Net PktLag=0
echo Net PktLagVariance=0
echo Net PktLoss=0
echo.
echo Run these in the client console while connected to the Ground Zero server.
exit /b 0