vt-d / problox

Roblox library with support for launching game clients.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Problox

Roblox library with support for launching game clients.

Usage

from problox import Problox

# https://chrome.google.com/webstore/detail/get-cookiestxt/bgaddhkoddajcdgocldbbfleckgcbcid
rbx = Problox.from_cookiefile("cookies.txt")

user_info = rbx.request(
    method="GET",
    url="https://users.roblox.com/v1/users/authenticated"
    ).json()
print(f"Authenticated as {user_info['name']}")

client = rbx.join_game(1818, locale="fr_fr")
print(f"Launched client with PID {client.pid}")

client.wait()
print(f"Client was closed")

Installation

pip install -U git+https://github.com/h0nde/problox

About

Roblox library with support for launching game clients.


Languages

Language:Python 100.0%