Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 12:48

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Private Server Info and Support Thread

Discussion on Private Server Info and Support Thread within the DarkOrbit forum part of the Browsergames category.

Reply
 
Old 10/16/2013, 23:33   #106
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
The last question
where I will add the code RSB cooldown
which??
StartsWith(?))
nckrnckr is offline  
Old 10/16/2013, 23:36   #107


 
Requi's Avatar
 
elite*gold: 3570
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,043
Received Thanks: 8,252
at the attack void.
check if laserid is the one from rsb.
if it's from it:
Send("0|A|CLD|RSB|4");
Requi is offline  
Old 10/17/2013, 00:35   #108
 
elite*gold: 0
Join Date: May 2012
Posts: 24
Received Thanks: 5
Quote:
Originally Posted by cryz35 View Post
I explained him
Would be cool if you put any solutions in the forum to help people progress with their knowledge of darkorbit private servers. It helps people as a community, the more people working on these, the better the results.
TehRoca is offline  
Thanks
1 User
Old 10/17/2013, 00:46   #109
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
I can not run in full
EMP, ISH, SMB cooldown working
but not working RSB cooldown

edit :
if you my server RSB added
I will not ask the question ever again
nckrnckr is offline  
Old 10/17/2013, 00:48   #110


 
Requi's Avatar
 
elite*gold: 3570
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,043
Received Thanks: 8,252
Quote:
Originally Posted by nckrnckr View Post
I can not run in full
EMP, ISH, SMB cooldown working
but not working RSB cooldown
How did you add it?
Requi is offline  
Old 10/17/2013, 00:52   #111
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
Quote:
Originally Posted by Requi View Post
How did you add it?
yes,
The only thing missing from my server = RSB cooldown

everything else is working
nckrnckr is offline  
Old 10/17/2013, 00:53   #112


 
Requi's Avatar
 
elite*gold: 3570
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,043
Received Thanks: 8,252
I thought you already tried it and its not working.

I posted the solution above.
Please try a bit on yourself.
Requi is offline  
Old 10/17/2013, 01:45   #113
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
the whole "attack" added the writings of RSB cooldown packets
but it still does not work properly
nckrnckr is offline  
Old 10/17/2013, 20:51   #114
 
elite*gold: 0
Join Date: Apr 2013
Posts: 41
Received Thanks: 8
Hey requi i really aprechiate all the work you do just to help us
Biggest fan!
domfol91 is offline  
Old 10/17/2013, 21:59   #115
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
I found where to put code in RSB cooldown
added, but does not work properly
nckrnckr is offline  
Old 10/18/2013, 19:35   #116
 
elite*gold: 0
Join Date: Jan 2010
Posts: 41
Received Thanks: 5
i have paste this on emulator

PHP Code:
                            else if(packetHeader == "S|ROB")
                            {
                                if (
this.Ship.HP == this.Ship.maxHP)
                                {
                                    
Send("0|A|RS|0");
                                    
Send("0|A|HPT|" this.Ship.HP "|" this.Ship.maxHP);
                                    {
                                        if (
this.Ship.HP this.Ship.maxHP)
                                        
Send("0|A|RS|1");
                                        
long hp this.Ship.HP 10000;
                                        
Send("0|A|HPT|" hp "|" this.Ship.maxHP);

                                        if (
this.Ship.HP >= this.Ship.maxHP)
                                            
this.Ship.HP this.Ship.maxHP;
                                        
Send("0|A|RS|0");
                                    }
                                }
                            } 
and this d'ont work O_o ? where is my error pliz
killer boss is offline  
Old 10/18/2013, 20:27   #117
 
elite*gold: 0
Join Date: Feb 2008
Posts: 34
Received Thanks: 3
Quote:
Originally Posted by killer boss View Post
i have paste this on emulator

PHP Code:
                            else if(packetHeader == "S|ROB")
                            {
                                if (
this.Ship.HP == this.Ship.maxHP)
                                {
                                    
Send("0|A|RS|0");
                                    
Send("0|A|HPT|" this.Ship.HP "|" this.Ship.maxHP);
                                    {
                                        if (
this.Ship.HP this.Ship.maxHP)
                                        
Send("0|A|RS|1");
                                        
long hp this.Ship.HP 10000;
                                        
Send("0|A|HPT|" hp "|" this.Ship.maxHP);

                                        if (
this.Ship.HP >= this.Ship.maxHP)
                                            
this.Ship.HP this.Ship.maxHP;
                                        
Send("0|A|RS|0");
                                    }
                                }
                            } 
and this d'ont work O_o ? where is my error pliz
Your error is this " if (this.Ship.HP == this.Ship.maxHP)"
You told to your server to verify if the current ship hp = the current max hp
if both are equals them you desactivate the robot but if current hp is less or more than max hp, nothing is doing

i did it like this for my part
PHP Code:
                            else if (packetHeader.StartsWith("S"))
                            {
                                
string packetSubHeader packetParser.getString();
                                if (
packetSubHeader.StartsWith("ROB"))
                                {
                                    
this.Ship.repair true;
                                    if (
this.Ship.HP == this.Ship.maxHP)
                                    {
                                        
this.Send("0|A|RS|0");
                                        
this.Send("0|A|HPT|" this.Ship.HP "|" this.Ship.maxHP);
                                        
this.Ship.repair false;
                                        return;
                                    }
                                    else if (
this.Ship.HP this.Ship.maxHP)
                                    {
                                        
this.Send("0|A|RS|1");
                                        
uint newhp this.Ship.HP 500;
                                        
this.Ship.HP += 500;
                                        
this.Send("0|A|HPT|" newhp "|" this.Ship.maxHP);

                                    }
                                    else if (
this.Ship.HP this.Ship.maxHP)
                                    {
                                        
this.Ship.HP this.Ship.maxHP;
                                        
this.Send("0|A|HPT|" this.Ship.HP "|" this.Ship.maxHP);
                                        
this.Send("0|A|RS|0");
                                        
this.Ship.repair false;
                                    }
                                    
this.Send("0|A|RS|0");
                                }

sami37 is offline  
Old 10/18/2013, 21:08   #118
 
elite*gold: 0
Join Date: Jan 2010
Posts: 41
Received Thanks: 5
yes work full !! i see my error thx for your helping

Good game all
killer boss is offline  
Old 10/19/2013, 18:07   #119
 
elite*gold: 0
Join Date: May 2013
Posts: 79
Received Thanks: 15
hey Requi
whats about your server?
when will your server online?
Niki98@ is offline  
Old 10/19/2013, 18:23   #120


 
Requi's Avatar
 
elite*gold: 3570
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,043
Received Thanks: 8,252
When I announce it here on epvp.
Requi is offline  
Reply

Tags
2018, darkorbit, emulator, private, server


Similar Threads 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 12:52.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.