Jaden
not so active
Why not use RCON?Started working on client sided and server sided WebSockets, here is a sneek peak of a simple client side system
PHP:window.ws = new wsImpl('ws://localhost:8181/'); var hasConnected = false; function startWebSockets() { ws.onmessage = function (messageEvent) { onReceiveMessage(messageEvent.Data); }; ws.onopen = function () { onConnectionOpened(); }; ws.onclose = function () { onConnectionClosed(); } } function onReceiveMessage(messageData) { alert('You received a message from the WebSocket server: ' + messageData); } function onConnectionOpened() { console.log('Connected to the WebSocket server.'); hasConnected = true; } function onConnectionClosed() { if (!hasConnected) { console.log('Failed to connect to the WebSocket server.'); } else { console.log('Your connection to the WebSocket server was unexpectedly closed.'); } } startWebSockets();