Skip to content

Instantly share code, notes, and snippets.

View BalintGergely's full-sized avatar

Bálint János Gergely BalintGergely

View GitHub Profile
@Pupix
Pupix / index.js
Last active July 25, 2022 07:25
A minimal WAMP 1.0 protocol implementation to be used with the new League of Legends client (LCU)
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
const WebSocket = require('ws');
const MESSAGE_TYPES = {
WELCOME: 0,
PREFIX: 1,
CALL: 2,
CALLRESULT: 3,
CALLERROR: 4,