RocketLink Plugin

Plugin Banner
Author: yannismate
First Uploaded: 03/21/2021
Last Updated: 05/07/2021
 Views: 7498
 Downloads: 1912
 Open Plugin Homepage

BakkesMod Plugin providing relative position data about other players in a RocketLeague game for the RocketLink Client.


DESCRIPTION

BakkesMod Plugin providing relative position data about other players in a Rocket League game for the RocketLink Client.
The code for this plugin is heavily inspired by SOS / Simple Overlay System made by some other great people. Check their repo out for more info.

WebSocket

This plugin runs a WebSocket server on port 49124 (configurable through the cvar "RLINK_Port") emitting relative player positions when in a local server.

{
   "players":[
         {
            "distance": 1000,
            "id":"PLAYERID",
            "name": "PLAYERNAME",
            "team": 1,
            "__comment__": "This is the relative XYZ position of the other player to your own camera",
            "x": 0,
            "y": 0,
            "z": 0
         }
    ],
    "self_id":"YOUR OWN PLAYERID",
    "self_name":"YOUR OWN PLAYER NAME",
    "self_team": 1
}