|
You last visited: Today at 21:52
Advertisement
Private Server Info and Support Thread
Discussion on Private Server Info and Support Thread within the DarkOrbit forum part of the Browsergames category.
09/15/2014, 17:52
|
#991
|
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
|
Quote:
Originally Posted by sveratus
but you posted in your thread as test emulator, are you sure nobody wants to make an emu for inorbit cms? i think is the best because is fully working,shops,equipment,etc..  
|
My thread about it is closed.
And i posted it as a possibility to use for TEST.
Best Regards Bau
|
|
|
09/15/2014, 18:02
|
#992
|
elite*gold: 0
Join Date: Sep 2014
Posts: 270
Received Thanks: 21
|
okay, but i need working files the two icon8 and azure not working [troll] , and the aurora sfiles working but shop,inventory not working and have a small database
|
|
|
09/15/2014, 18:07
|
#993
|
elite*gold: 0
Join Date: May 2013
Posts: 54
Received Thanks: 5
|
Anyone knows the packet to hit the same ship-shield? (Only shield) ????
Has anyone *.swf file (Drones) (With havocks and Herc + Apis and Zeus)? What packet for them?
|
|
|
09/16/2014, 11:34
|
#994
|
elite*gold: 0
Join Date: Sep 2014
Posts: 270
Received Thanks: 21
|
nobody wants to help me with a small ****** emulator for inorbit cms??   thats why i don't like german people
|
|
|
09/16/2014, 12:38
|
#995
|
elite*gold: 0
Join Date: May 2013
Posts: 54
Received Thanks: 5
|
Quote:
Originally Posted by sveratus
nobody wants to help me with a small ****** emulator for inorbit cms??   thats why i don't like german people
|
I can help u  Skype : HuaRRez
|
|
|
09/20/2014, 21:43
|
#996
|
elite*gold: 7
Join Date: Dec 2008
Posts: 727
Received Thanks: 119
|
Hello guys.
Today I decieded to make my own private emu. I wanted to make 2in1 - making DO Emu + learning Node.JS (yes, I want to make that emu in Node.JS). Hope that at least one person knows wat is dat :P
So where's the problem ? Well.. I dont know. I am stuck at policy sending - It works, made especially TCP client with Node.JS for that (to check if that really works). Packet is sended properly, but the DO-Client (I am using old 2008 version) doesn't react at all...
I really dont have any idea where's the problem.
Here is my source:
Code:
var net = require('net');
var HOST = '127.0.0.1';
var PORT = 8080;
var POLICY = "<?xml version=\"1.0\"?><cross-domain-policy xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd\"><allow-access-from domain=\"*\" to-ports=\"*\" secure=\"false\" /><site-control permitted-cross-domain-policies=\"master-only\" /></cross-domain-policy>";
net.createServer(function(sock) {
console.log('CONNECTED: ' + sock.remoteAddress +':'+ sock.remotePort);
sock.on('data', function(data) {
console.log('DATA ' + sock.remoteAddress + ': ' + data);
var packet = data.toString();
if (packet.indexOf("<policy-file-request/>") > -1) {
sock.write(POLICY);
console.log(POLICY);
console.log('Sended policy to: ' + sock.remoteAddress);
}
else
{
var split = packet.split('|');
console.log('PACKET: ' + packet[0]);
if (split[0] === 'LOGIN')
{
console.log('Client wants to login');
}
}
});
sock.on('close', function(data) {
console.log('CLOSED: ' + sock.remoteAddress +' '+ sock.remotePort);
});
}).listen(PORT, HOST);
console.log('Server listening on ' + HOST +':'+ PORT);
Code:
console.log(POLICY);
shows proper packet (
Code:
<?xml version="1.0"?><cross-domain-policy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd"><allow-access-from domain="*" to-ports="*" secure="false" /><site-control permitted-cross-domain-policies="master-only" /></cross-domain-policy>
) without all \.
I dont know how to solve that. Anybody expirianced that kind of stuff?
Regards,
Nommo.
EDIT: Nevermind ... Problem was with flash stuff -> in Node.JS you need to end EVERY packet (client -> server & server -> client with \0 ). Hope that this will save someones time.
|
|
|
09/20/2014, 23:21
|
#997
|
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
|
DarkOrbit.tv's api node is currently down, i'm aware of it and don't need more pm's about it -.-
Best Regards Bau
|
|
|
09/21/2014, 08:27
|
#998
|
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,043
Received Thanks: 8,252
|
Quote:
Originally Posted by Nommo
Hello guys.
Today I decieded to make my own private emu. I wanted to make 2in1 - making DO Emu + learning Node.JS (yes, I want to make that emu in Node.JS). Hope that at least one person knows wat is dat :P
So where's the problem ? Well.. I dont know. I am stuck at policy sending - It works, made especially TCP client with Node.JS for that (to check if that really works). Packet is sended properly, but the DO-Client (I am using old 2008 version) doesn't react at all...
I really dont have any idea where's the problem.
Here is my source:
Code:
var net = require('net');
var HOST = '127.0.0.1';
var PORT = 8080;
var POLICY = "<?xml version=\"1.0\"?><cross-domain-policy xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd\"><allow-access-from domain=\"*\" to-ports=\"*\" secure=\"false\" /><site-control permitted-cross-domain-policies=\"master-only\" /></cross-domain-policy>";
net.createServer(function(sock) {
console.log('CONNECTED: ' + sock.remoteAddress +':'+ sock.remotePort);
sock.on('data', function(data) {
console.log('DATA ' + sock.remoteAddress + ': ' + data);
var packet = data.toString();
if (packet.indexOf("<policy-file-request/>") > -1) {
sock.write(POLICY);
console.log(POLICY);
console.log('Sended policy to: ' + sock.remoteAddress);
}
else
{
var split = packet.split('|');
console.log('PACKET: ' + packet[0]);
if (split[0] === 'LOGIN')
{
console.log('Client wants to login');
}
}
});
sock.on('close', function(data) {
console.log('CLOSED: ' + sock.remoteAddress +' '+ sock.remotePort);
});
}).listen(PORT, HOST);
console.log('Server listening on ' + HOST +':'+ PORT);
Code:
console.log(POLICY);
shows proper packet (
Code:
<?xml version="1.0"?><cross-domain-policy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd"><allow-access-from domain="*" to-ports="*" secure="false" /><site-control permitted-cross-domain-policies="master-only" /></cross-domain-policy>
) without all \.
I dont know how to solve that. Anybody expirianced that kind of stuff?
Regards,
Nommo.
EDIT: Nevermind ... Problem was with flash stuff -> in Node.JS you need to end EVERY packet (client -> server & server -> client with \0 ). Hope that this will save someones time.
|
+ \ is for escaping. So it's normal if it sends and logs without it
|
|
|
09/21/2014, 13:25
|
#999
|
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
|
Hi,
where laser bat and CPU images for newclient?
darkorbit/spacemap/graphics/????/????? ??
|
|
|
09/21/2014, 13:33
|
#1000
|
elite*gold: 2
Join Date: Jun 2012
Posts: 988
Received Thanks: 562
|
darkorbit/spacemap/graphics/ui/itemsControlMenu_texture.png
i find
|
|
|
09/21/2014, 21:52
|
#1001
|
elite*gold: 0
Join Date: Sep 2014
Posts: 270
Received Thanks: 21
|
Quote:
Originally Posted by Nommo
Hello guys.
Today I decieded to make my own private emu. I wanted to make 2in1 - making DO Emu + learning Node.JS (yes, I want to make that emu in Node.JS). Hope that at least one person knows wat is dat :P
So where's the problem ? Well.. I dont know. I am stuck at policy sending - It works, made especially TCP client with Node.JS for that (to check if that really works). Packet is sended properly, but the DO-Client (I am using old 2008 version) doesn't react at all...
I really dont have any idea where's the problem.
Here is my source:
Code:
var net = require('net');
var HOST = '127.0.0.1';
var PORT = 8080;
var POLICY = "<?xml version=\"1.0\"?><cross-domain-policy xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd\"><allow-access-from domain=\"*\" to-ports=\"*\" secure=\"false\" /><site-control permitted-cross-domain-policies=\"master-only\" /></cross-domain-policy>";
net.createServer(function(sock) {
console.log('CONNECTED: ' + sock.remoteAddress +':'+ sock.remotePort);
sock.on('data', function(data) {
console.log('DATA ' + sock.remoteAddress + ': ' + data);
var packet = data.toString();
if (packet.indexOf("<policy-file-request/>") > -1) {
sock.write(POLICY);
console.log(POLICY);
console.log('Sended policy to: ' + sock.remoteAddress);
}
else
{
var split = packet.split('|');
console.log('PACKET: ' + packet[0]);
if (split[0] === 'LOGIN')
{
console.log('Client wants to login');
}
}
});
sock.on('close', function(data) {
console.log('CLOSED: ' + sock.remoteAddress +' '+ sock.remotePort);
});
}).listen(PORT, HOST);
console.log('Server listening on ' + HOST +':'+ PORT);
Code:
console.log(POLICY);
shows proper packet (
Code:
<?xml version="1.0"?><cross-domain-policy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd"><allow-access-from domain="*" to-ports="*" secure="false" /><site-control permitted-cross-domain-policies="master-only" /></cross-domain-policy>
) without all \.
I dont know how to solve that. Anybody expirianced that kind of stuff?
Regards,
Nommo.
EDIT: Nevermind ... Problem was with flash stuff -> in Node.JS you need to end EVERY packet (client -> server & server -> client with \0 ). Hope that this will save someones time.
|
if you solved this then you can make an great emu for inorbit or your serverfiles then you can share with us
|
|
|
09/22/2014, 13:47
|
#1002
|
elite*gold: 7
Join Date: Dec 2008
Posts: 727
Received Thanks: 119
|
Hahaha we will see.. Thats a lot of work incoming but still I am coding it 3-5hrs/day so maybe i will end this project in da future.
|
|
|
09/23/2014, 19:09
|
#1003
|
elite*gold: 7
Join Date: Dec 2008
Posts: 727
Received Thanks: 119
|
Yo guys.
I am looking for music, sound_effects, maps .swf(s) for Old-DO client.
Anybody have them ?
I REALLY need them!
Regards,
Nommo.
|
|
|
09/23/2014, 19:52
|
#1004
|
elite*gold: 2
Join Date: Jun 2012
Posts: 988
Received Thanks: 562
|
Quote:
Originally Posted by Nommo
Yo guys.
I am looking for music, sound_effects, maps .swf(s) for Old-DO client.
Anybody have them ?
I REALLY need them!
Regards,
Nommo.
|
i have all old client sounds and music swf files  orginal :P
|
|
|
09/25/2014, 19:29
|
#1005
|
elite*gold: 0
Join Date: Mar 2013
Posts: 169
Received Thanks: 16
|
how to add mobs? I'm using the emulator in orbit
|
|
|
Similar Threads
|
Private private server :P READ FOR MORE INFO
12/01/2010 - SRO Private Server - 12 Replies
hey guys im wondering if there is anyway to make a real private server like ZSZC or SWSRO or MYSRO but to where i can only play and level a character and as if it was a real private server. but just for me, not like an emulator where im already lvl 90 or 120 or whatever. i mean one where i set the rates and i level. if not then ok u can close this. but i was just wondering.
|
All times are GMT +1. The time now is 21:55.
|
|