elitepvpers

elitepvpers (https://www.elitepvpers.com/forum/)
-   DarkOrbit (https://www.elitepvpers.com/forum/darkorbit/)
-   -   [Collection Thread] Private Server Info and Support Thread (https://www.elitepvpers.com/forum/darkorbit/2830133-private-server-info-support-thread.html)

nykomc 12/29/2015 09:42

How to start SpaceBall in darkorbit private server?

drrrrp 12/29/2015 19:58

Quote:

Originally Posted by S7K Yuuki (Post 32898117)
I wasn't able to bypass that packet correctly too, but you can skip it.

What I did and seems like all the developers using that clients did (aka Cryz, SB team) is edit the version request packet to send the userID and sessionID instead of the minor, major and build params.

So you can get the information for the player (to execute the login in your emulator or whatever).

So once i recieve the VersionRequest i answer with the login packet directly.

Regards.-

Hello, can I know how do you edit ActionScript to manipulate packets?

S7K Yuuki 12/29/2015 20:15

Quote:

Originally Posted by drrrrp (Post 33641760)
Hello, can I know how do you edit ActionScript to manipulate packets?

You need to edit the bytecode of the .swf.

You can use any flash decompiler like ffdec or [Only registered and activated users can see links. Click Here To Register...](the one Ink recommended me).

Regards and good luck ;)

drrrrp 12/29/2015 20:40

Quote:

Originally Posted by S7K Yuuki (Post 33641873)
You need to edit the bytecode of the .swf.

You can use any flash decompiler like ffdec or [Only registered and activated users can see links. Click Here To Register...](the one Ink recommended me).

Regards and good luck ;)

Thank you very much!

Destiny 01/03/2016 04:19

some one has darkorbit client files 4.1 or lower 2.x.x 3.x.x but clear no shit edited swf or something
hmm
[Only registered and activated users can see links. Click Here To Register...]

drrrrp 01/03/2016 07:55

I've a question again. If I modify main.swf, should I put it directly in flashembed function or investigate further and change preloader.swf?

S7K Yuuki 01/03/2016 13:59

Quote:

Originally Posted by =INFINITY= (Post 33666834)
some one has darkorbit client files 4.1 or lower 2.x.x 3.x.x but clear no shit edited swf or something
hmm

Here you have both, I never edited them. [Only registered and activated users can see links. Click Here To Register...]

Quote:

Originally Posted by drrrrp (Post 33667019)
I've a question again. If I modify main.swf, should I put it directly in flashembed function or investigate further and change preloader.swf?

You need to xor' it again and replace it with any proxy like charles, fiddler, etc..

The only thing that preloader does is de-xor loadingScreen.swf (actually i can't remember if main too or loadingScreen does it)

Regards.-

Destiny 01/03/2016 20:51

where ship user windows?
[Only registered and activated users can see links. Click Here To Register...]

Requi 01/04/2016 17:25

Quote:

Originally Posted by =INFINITY= (Post 33671371)
where ship user windows?
[Only registered and activated users can see links. Click Here To Register...]

Send the packets correctly and in the right order.

Destiny 01/06/2016 19:58

sweet
[Only registered and activated users can see links. Click Here To Register...]

manulaiko3.0 01/06/2016 22:16

Quote:

Originally Posted by =INFINITY= (Post 33691337)
sweet
[Only registered and activated users can see links. Click Here To Register...]

You don't need to post a pic of everything you do

nykomc 01/08/2016 13:08

Please help! I want to move station eic and vru in 1-1 wath i change ?

Requi 01/08/2016 13:42

Quote:

Originally Posted by nykomc (Post 33701654)
Please help! I want to move station eic and vru in 1-1 wath i change ?

The position parameter

stars093 01/09/2016 04:40

PHP
 
Hello someone can give php files , or tell me where I can find them for the hall of fame for the clan destroyed ships and factions = )

cryz35 01/09/2016 05:11

Quote:

Originally Posted by stars093 (Post 33707765)
Hello someone can give php files , or tell me where I can find them for the hall of fame for the clan destroyed ships and factions = )

You don't, you code

nykomc 01/11/2016 09:14

Quote:

Originally Posted by Requi (Post 33701884)
The position parameter


I change mapID in IndexInternal.es
if (isset($_GET['action'])):
if ($_GET['action'] === 'internalCompanyChoose' && $Users->DataRow['factionId'] === '0'):
$factory->setId($Users->DataRow['ID'], $Users->DataRow['playerID']);
if (isset($_GET['subaction'], $_GET['factionID']) && $_GET['subaction'] === 'factionChoose' && $_GET['factionID'] > 0 && $_GET['factionID'] < 4):
$mapId = 1;
if ($_GET['factionID'] === '1') {
$mapId = 16;
$x = 1000;
$y = 1000;
} elseif ($_GET['factionID'] === '2') {
$mapId = 16;
$x = 19800;
$y = 1000;
} else {
$mapId = 16;
$x = 10000;
$y = 11700;
};


And i change in emulator this

public void SendStations()
{


if (MapId == 1)
{
Send("0|s|0|1|redStation|1|1500|1000|1000");
}
else if (MapId == 16)
{
Send("0|s|0|1|blueStation|2|1500|19800|1000");
}
else if (MapId == 16)
{
Send("0|s|0|1|greenStation|3|1500|19600|11900");
}


}

when i send this in emulator no see the base

wath i need to change to see the bases in 4-4?

Diаmonds 01/11/2016 10:43

Quote:

Originally Posted by nykomc (Post 33722090)
Code:

else if (MapId == 16)
{
Send("0|s|0|1|blueStation|2|1500|19800|1000");
}
else if (MapId == 16)
{
Send("0|s|0|1|greenStation|3|1500|19600|11900");
}



You checking the same thing twice. Don't know if that's THE issue, but it's already one issue.

manulaiko3.0 01/11/2016 13:52

Quote:

Originally Posted by nykomc (Post 33722090)
I change mapID in IndexInternal.es
if (isset($_GET['action'])):
if ($_GET['action'] === 'internalCompanyChoose' && $Users->DataRow['factionId'] === '0'):
$factory->setId($Users->DataRow['ID'], $Users->DataRow['playerID']);
if (isset($_GET['subaction'], $_GET['factionID']) && $_GET['subaction'] === 'factionChoose' && $_GET['factionID'] > 0 && $_GET['factionID'] < 4):
$mapId = 1;
if ($_GET['factionID'] === '1') {
$mapId = 16;
$x = 1000;
$y = 1000;
} elseif ($_GET['factionID'] === '2') {
$mapId = 16;
$x = 19800;
$y = 1000;
} else {
$mapId = 16;
$x = 10000;
$y = 11700;
};


And i change in emulator this

public void SendStations()
{


if (MapId == 1)
{
Send("0|s|0|1|redStation|1|1500|1000|1000");
}
else if (MapId == 16)
{
Send("0|s|0|1|blueStation|2|1500|19800|1000");
}
else if (MapId == 16)
{
Send("0|s|0|1|greenStation|3|1500|19600|11900");
}


}

when i send this in emulator no see the base

wath i need to change to see the bases in 4-4?

Your code gave me such a shame that I'm just going to fix it so you can copy paste it and leave the forum for a while:

IndexInternal.es:
PHP Code:

if(!empty($_GET["action"])) {
    if(
$_GET["action"] == "internalCompanyChoose" &&
       
$Users->DataRow["factionId"] == 0) {
        
$factory->setId($Users->DataRow["ID"], $Users->DataRow["playerID"]);
        if(!empty(
$_GET["subaction"]) && $_GET["subaction"] == "factionChoose") {
            if(empty(
$_GET["factionID"]) || !in_array(array(123), $_GET["factionID"])) {
                die(
"Manulaiko was here :)");
            }

            
$mapId 16;
            
$x     10000;
            
$y     11700;

            if(
$_GET["factionID"] == 1) {
                
$x 1000;
                
$y 1000;
            } else if(
$_GET["factionID"] == 2) {
                
$x 19800;
                
$y 1000;
            }
        }
    }


Emulator:
Code:

public void SendStations()
{
    Send("0|s|0|1|redStation|1|1500|1000|1000");
    Send("0|s|0|1|blueStation|2|1500|19800|1000");
    Send("0|s|0|1|greenStation|3|1500|19600|11900");
}

doesn't look nicer now? Now is your turn to find the rest of the 1ab34d3ef214cf14513e bugs in your code and fix them.

hugomailliot 01/11/2016 16:37

What is the best private server pls?

45the45 01/14/2016 16:39

Hello,

Can sombody send me the wwwroot. files pls I have a problem in xammp during 176 days and I need help to fix:

C:\inetpub\wwwroot\phpmyadmin\

[IMG=expandable: 1]http://i.imgur.com/CnihAHE.png[/IMG]
[IMG=expandable: 1]http://i.imgur.com/Bror0uV.png[/IMG]
[IMG=expandable: 1]http://i.imgur.com/rUXzMio.png[/IMG]

Destiny 01/15/2016 16:57

quest work
[Only registered and activated users can see links. Click Here To Register...]

ZeusReally 01/17/2016 15:16

hi guys i need nice chatserver sql and emulator bcz my chat hacked localhost who help me plz

Ready*12 01/17/2016 16:41

Quote:

Originally Posted by ZeusReally (Post 33764606)
hi guys i need nice chatserver sql and emulator bcz my chat hacked localhost who help me plz

uhauhu it's engrossing i wonder who would hack your the best server :rolleyes:
further when your server was hacked i wonder your face-expression m.r the best coder.if we comes to that issue about the chatserver there is a solution , its do yourself a favor and stop making the private server , i think that decision is gonna be fine for everyone amk jooo jeee

stars093 01/25/2016 17:28

someone can give me the source of DarkEmulator ??

karas17 01/25/2016 19:22

What are packet for missions ?

EDIT. nevermind, I already have :)

Skydark[DEV] 01/27/2016 15:26

i search coder for pvp server,

i give money . skype zeusdev26

Luffa 01/31/2016 01:34

PHP7 + Pthreading runs as fast as F. People should try use it, I just scraped data from a huge danish database with no issues at all. Ran so fast and smooth.
I recommend people to check out php 7 atleast.

- Bau

nykomc 01/31/2016 10:44

Hi.Please comand to start SpaceBall

karas17 01/31/2016 11:18

Quote:

Originally Posted by nykomc (Post 33858248)
Hi.Please comand to start SpaceBall

enable panel:

this.Send("0|n|ssi");
this.Send("0|n|ssc|1|" + ValueMMO);
this.Send("0|n|ssc|2|" + ValueEIC);
this.Send("0|n|ssc|3|" + ValueVRU);

// example

manulaiko3.0 02/02/2016 11:30

Quote:

Originally Posted by Βau (Post 33857195)
PHP7 + Pthreading runs as fast as F. People should try use it, I just scraped data from a huge danish database with no issues at all. Ran so fast and smooth.
I recommend people to check out php 7 atleast.

- Bau

The main difference between PHP5 and PHP7 (a part from scalar type hints) is the speed, it's now hand by hand with HHVM and once JIT is fully implemented in PHP it will be as fast as C (here's a benchmark of different languages showing that php7 with jit support is faster than gcc: [Only registered and activated users can see links. Click Here To Register...])

BTW if anyone wants to take a look at PThreads, here's a github repo: [Only registered and activated users can see links. Click Here To Register...]

ZeusReally 02/02/2016 18:56

How do I find the name of any database server

stars093 02/05/2016 15:09

Hi guys I need a big favor someone has the spaebattle DB

GuessWho! 02/05/2016 22:48

Quote:

Originally Posted by stars093 (Post 33893048)
Hi guys I need a big favor someone has the spaebattle DB

Looool xDDDDD Using others work? xDDD Make your own Database just look in the emulator....

Spiker077 02/06/2016 16:25

Who has SpaceBattles 9.0 files

GuessWho! 02/06/2016 17:18

Quote:

Originally Posted by Spiker077 (Post 33900076)
Who has SpaceBattles 9.0 files

I do...

nykomc 02/06/2016 20:19

how can give me Sourgeon design .swf files

stars093 02/10/2016 07:13

guys someone can give me the file please let spacebattle 9.0 :(

dogun47 02/11/2016 18:34

I use darkemulator but my emulator not work help

nykomc 02/12/2016 11:44

Hi i need Darkorbit resource download for do_img

ciao2345 02/14/2016 01:25

any news?:)
Quote:

Originally Posted by =INFINITY= (Post 33751653)
quest work
[Only registered and activated users can see links. Click Here To Register...]



All times are GMT +2. The time now is 15:43.

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.