This repository has been archived on 2026-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AgrarianGameArchive/Scripts/LatencyTestProfiles-Windows.bat

28 lines
520 B
Batchfile

@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