

A Risk of Rain 2 mod that broadcasts your run data over WebSocket, enabling stream overlays and companion apps to display your game state in real time.
The mod runs a WebSocket server on port 11420. Any client on the local network can connect to receive JSON updates roughly once per second. The mod also broadcasts a UDP discovery beacon on port 11421 so companion apps can find the server automatically.
Connect to ws://<host-ip>:11420/ to receive messages:
inventory_updateSent every second while a run is active. Contains the full game state snapshot.
run_endedSent when the run ends (death, victory, or quit).
The mod sends a UDP multicast/broadcast beacon every 2 seconds:
ROR2SYNC:<ip>:<port>
It also responds to DISCOVER UDP packets on port 11421.
RoR2ItemSync.dll in your BepInEx/plugins folderNo configuration needed. The mod runs automatically when the game starts.