Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 14:47

  • 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/14/2013, 22:03   #91


 
Requi's Avatar
 
elite*gold: 3800
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,039
Received Thanks: 8,243
Send("0|A|TX|ELA|" + this.userId);
Requi is offline  
Thanks
1 User
Old 10/14/2013, 22:05   #92
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 73
good thanks requi

EDİT: rocket packet ?
nckrnckr is offline  
Old 10/14/2013, 22:12   #93


 
Requi's Avatar
 
elite*gold: 3800
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,039
Received Thanks: 8,243
never did it, so I can't help you now.
Requi is offline  
Thanks
1 User
Old 10/16/2013, 15:10   #94
 
elite*gold: 0
Join Date: Jan 2010
Posts: 41
Received Thanks: 5
Excuse me : i have problem .. i have edited emulator for add ish but ish is lock on game how to unlock cpu because is not on game.xml ..

Thx
killer boss is offline  
Old 10/16/2013, 15:54   #95


 
Requi's Avatar
 
elite*gold: 3800
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,039
Received Thanks: 8,243
At the Send("A|ITM|Packets") you can activate CPU's.

But that they do something, you need to code packets.
Requi is offline  
Old 10/16/2013, 16:08   #96
 
elite*gold: 0
Join Date: Jan 2010
Posts: 41
Received Thanks: 5
have you got packet ?
killer boss is offline  
Old 10/16/2013, 17:44   #97
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 73
requi
I did not translate this code to C # or

if(packet.substring(0, 5).equals("S|ROB"))
{
if(_user.getHp() == _user.getHpMax())
{
SocketManager.send(_user, "0|A|RS|0");
SocketManager.send(_user, "0|A|HPT|"+_user.getHp()+"|"+_user.getHpMax()) ;
return;
}
SocketManager.send(_user, "0|A|RS|1");
long hp = _user.getHp()+500;
_user.setHp(hp);
SocketManager.send(_user, "0|A|HPT|"+hp+"|"+_user.getHpMax());
if(_user.getHp() >= _user.getHpMax())
{
_user.setHp(_user.getHpMax());
SocketManager.send(_user, "0|A|RS|0");
}

Please write me a C # version of this code?
nckrnckr is offline  
Old 10/16/2013, 18:11   #98
 
cryz35's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,716
Received Thanks: 2,380
Quote:
Originally Posted by nckrnckr View Post
requi
I did not translate this code to C # or

if(packet.substring(0, 5).equals("S|ROB"))
{
if(_user.getHp() == _user.getHpMax())
{
SocketManager.send(_user, "0|A|RS|0");
SocketManager.send(_user, "0|A|HPT|"+_user.getHp()+"|"+_user.getHpMax()) ;
return;
}
SocketManager.send(_user, "0|A|RS|1");
long hp = _user.getHp()+500;
_user.setHp(hp);
SocketManager.send(_user, "0|A|HPT|"+hp+"|"+_user.getHpMax());
if(_user.getHp() >= _user.getHpMax())
{
_user.setHp(_user.getHpMax());
SocketManager.send(_user, "0|A|RS|0");
}

Please write me a C # version of this code?
Armut piş ağzıma düş oh ne güzel.
cryz35 is offline  
Old 10/16/2013, 18:13   #99
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 73
Quote:
Originally Posted by cryz35 View Post
Armut piş ağzıma düş oh ne güzel.
kod belli zaten tek gereken çevrilmesi
nckrnckr is offline  
Old 10/16/2013, 18:45   #100


 
Requi's Avatar
 
elite*gold: 3800
The Black Market: 244/0/0
Join Date: Dec 2012
Posts: 13,039
Received Thanks: 8,243
Quote:
Originally Posted by nckrnckr View Post
requi
I did not translate this code to C # or

if(packet.substring(0, 5).equals("S|ROB"))
{
if(_user.getHp() == _user.getHpMax())
{
SocketManager.send(_user, "0|A|RS|0");
SocketManager.send(_user, "0|A|HPT|"+_user.getHp()+"|"+_user.getHpMax()) ;
return;
}
SocketManager.send(_user, "0|A|RS|1");
long hp = _user.getHp()+500;
_user.setHp(hp);
SocketManager.send(_user, "0|A|HPT|"+hp+"|"+_user.getHpMax());
if(_user.getHp() >= _user.getHpMax())
{
_user.setHp(_user.getHpMax());
SocketManager.send(_user, "0|A|RS|0");
}

Please write me a C # version of this code?
Code:
elseif(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);
}
Send("0|A|RS|1");
long hp = this.ship.hp + 500;
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");
}
}
Should be right, except the variables.
Requi is offline  
Thanks
1 User
Old 10/16/2013, 19:20   #101
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 73
I wrote code editing

Code:
else if (packetHeader.StartsWith("S|ROB"))
                            {
                               if(this.Ship.HP == this.Ship.maxHP)
                               {
                                  Send("0|A|RS|0");
                                  Send("0|A|HPT|" + this.Ship.HP + "|" + this.Ship.maxHP);
                                  {
                                  this.Send("0|A|RS|1");
                                  long hp = this.Ship.HP + 500;
                                  this.Send("0|A|HPT|" + hp + "|" + this.Ship.maxHP);
                                  if(this.Ship.HP >= this.Ship.maxHP)
                                  this.Ship.HP = this.Ship.maxHP;
                                    this.Send("0|A|RS|0");
                                  }
but it did not work
nckrnckr is offline  
Old 10/16/2013, 19:39   #102
 
elite*gold: 0
Join Date: May 2012
Posts: 24
Received Thanks: 5
Quote:
Originally Posted by nckrnckr View Post
I wrote code editing

Code:
else if (packetHeader.StartsWith("S|ROB"))
                            {
                               if(this.Ship.HP == this.Ship.maxHP)
                               {
                                  Send("0|A|RS|0");
                                  Send("0|A|HPT|" + this.Ship.HP + "|" + this.Ship.maxHP);
                                  {
                                  this.Send("0|A|RS|1");
                                  long hp = this.Ship.HP + 500;
                                  this.Send("0|A|HPT|" + hp + "|" + this.Ship.maxHP);
                                  if(this.Ship.HP >= this.Ship.maxHP)
                                  this.Ship.HP = this.Ship.maxHP;
                                    this.Send("0|A|RS|0");
                                  }
but it did not work
Hey nckrnckr.

Should it be if it's NOT equal to max hp?
TehRoca is offline  
Old 10/16/2013, 21:14   #103
 
nckrnckr's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 73
Quote:
Originally Posted by TehRoca View Post
Hey nckrnckr.

Should it be if it's NOT equal to max hp?
problem fixed

------------------------------------------
I've added BRB
HP is adding 100,000
But,
100.000 but the screen does not appear when you add
What should I do to show how much been added to the screen?
sorry english poor
nckrnckr is offline  
Old 10/16/2013, 21:28   #104
 
elite*gold: 0
Join Date: May 2012
Posts: 24
Received Thanks: 5
Quote:
Originally Posted by nckrnckr View Post
problem fixed

------------------------------------------
I've added BRB
HP is adding 100,000
But,
100.000 but the screen does not appear when you add
What should I do to show how much been added to the screen?
sorry english poor
Did what I say resolve that issue?

And I'm pretty sure that would be a packet, will speak to someone who knows about the packets more for you.

P.s the thanks feature goes a long way if somebody helps you
TehRoca is offline  
Old 10/16/2013, 22:28   #105
 
cryz35's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,716
Received Thanks: 2,380
Quote:
Originally Posted by TehRoca View Post
Did what I say resolve that issue?

And I'm pretty sure that would be a packet, will speak to someone who knows about the packets more for you.

P.s the thanks feature goes a long way if somebody helps you
I explained him
cryz35 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 +2. The time now is 14:47.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.