
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
wayz-rlsdk-python
Advanced tools
This is reverse engineered python SDK package aiming to read data from RocketLeague.exe.
This SDK uses PyMem to read game memory and frida to hook game functions.
pip install wayz_rlsdk_python
Or
poetry add wayz_rlsdk_python
from rlsdk_python import RLSDK, EventTypes
import sys
rlsdk = RLSDK(hook_player_tick=True)
def on_tick(event):
game_event = rlsdk.get_game_event()
if game_event:
cars = game_event.get_cars()
for car in cars:
pri = car.get_pri()
player_name = pri.get_player_name()
# Display car position
x,y,z = car.get_location().get_xyz()
print(f"{player_name} is at {x},{y},{z}")
rlsdk.event.subscribe(EventTypes.ON_PLAYER_TICK, on_tick)
sys.stdin.read()
You can attach a callback function to an event like this:
from rlsdk_python import RLSDK, EventTypes
sdk = RLSDK()
sdk.event.subscribe(EventTypes.ON_KEY_PRESSED, on_key_pressed)
def on_key_pressed(event):
print("Key pressed:", event.key)
More examples and documentation will be added if users ask for it.
I need a way to find GObjects and GNames base offsets, because this offsets changes frequently (on each uptates) and are differents for Epic and Steam
FAQs
RLSDK modifications I made to train with Python.
We found that wayz-rlsdk-python demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.