| Joined: |
Jun 23, 2018 03:45 PM |
| Last Post: |
Jun 23, 2018 04:22 PM |
| Last Visit: |
Jun 23, 2018 04:26 PM |
| Location: |
Perú |
| Occupation: |
Web developer |
| Interests: |
Halo |
| Your Age: |
28 |
| What Games do you play: |
Halo CE, Halo Online, Counter-strike, Team Force 2, Dota 1, y Dota 2 |
| Avatar: |
"Es mejor ser el segundo, que no llegar a la meta"
|
|
Send Private Message
|
danielpz has contributed to 1 posts out of 465278 total posts
(0.00%) in 1,672 days (0.00 posts per day).
20 Most recent posts:
Hello everyone, this is my first post, I'm Web Developer and I'm developing a desktop app to get the list of all servers of Halo CE (with Electron JS), but I dont know how get that list, investigating I get this domains:
s1.master.hosthpc.com s1.ms01.hosthpc.com
I think that they are the master server, and investigating more (with WireShark XD) I found a way to connect to that master server (s1.ms01.hosthpc.com) with Node JS
var net = require('net');
var net = require('net');
var client = new net.Socket(); client.connect(28910, '54.210.5.59', function() { console.log('Connected'); //client.write(':V'); });
client.on('data', function(data) { console.log('Received: ' + data); client.destroy(); // kill client after server's response });
client.on('close', function() { console.log('Connection closed'); });
But I just recieve 'Connect' but no more, any list of nothing :'C
the goal is do this https://image.ibb.co/dnpTjo/servers.jpg (that is the halo online brownser servers) but outside the game, and doit for Halo CE,
can someone help me please?
|
|
 |
|