- Uses a steam installation of Spiral Knights to sniff streamed network packets for Arcade gates in rotation and copies the latest gate in JSON to
../gatemap-viewer/gates/
and updates../gatemap-viewer/gates/gate_list.txt
pip install construct
pip install scapy
- Edit
PACKET_FILTER = 'dst net 192.168.1 and tcp and ip'
to reflect your local network configuration.
E.g. If your local IP address is 192.168.5.109, replace192.168.1
with192.168.5
- Edit
SK_PATH = 'C:\\SteamLibrary\\steamapps\\common\\Spiral Knights'
to reflect the location of your Steam Spiral Knights installation. - Edit
SK_ARGS = 'java_vm/bin/javaw.exe -jar getdown-pro.jar . "" username password'
with your own credentials.
- Run process_new_gate.bat
- View gates with gatemap-viewer or at https://magnus0sk.github.io/gatemap-viewer/?show_timer=1
For local use, runpython -m http.server
on the command line and navigate to127.0.0.1:8000/?show_timer=1
.