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 | Support Thread

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

Closed Thread
 
Old   #1

 
Luffa's Avatar
 
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
Post Private Server | Support Thread | How to Use


Organized by

FAQ / Disclaimer:
Quote:
• I ( and my real identity) and other posters, take absolutely no responsibility for what you do with the information & knowledge we provide.

• If you have any questions ask them here or at the live support, do NOT pm me cause i won't answer on any server related questions, so do yourself a favor and read the original post(OP).

• If someone posted something you could use, thank them and not me.

• The threads original purpose is noy to help you develop your server, but to assist people that is using, already made projects. To minimize the spam of help me threads.
want your project included? Pm me with subject: include server support.

• Any directly sharing of personal information, or advertising in the thread, will be reported.


Hello there, you have come to this thread to maybe ask about something, seek answers or maybe provide some answers to questions members posts.

You maybe want to play only with your friends, rather play with randoms.
But it's difficult to find something that just work a little bit.
And Bigpoint is dominating this, and is also the company that own DarkOrbit.




Some projects have evolved lately, and need a support, you could ask about nearly anything, related to the project that is supported.

We are currently supporting following released projects:
Quote:


Video tutorials:


Do you want to develop on the project and make your own version of it.
Take a look on GitHub.

Many of the WORKING projects we support will be uploaded to GitHub.






Afraid of hitting the wall of copyright infringement? Or Bp trying to take down your site and server?
We might be able to help you preventing this happen or find a solution, through the live support.



Live support:
Luffa is offline  
Thanks
24 Users
Old 06/22/2013, 22:15   #2
 
Sήøwy's Avatar
 
elite*gold: 1
Join Date: Aug 2010
Posts: 1,329
Received Thanks: 1,723
Quote:
public static void GAME_SEND_MSG_CHAT(PrintWriter _out, int camera, Jucatori _user, String mesaj)
{
String packet = "a%"+camera+"@"+_user.getJucator()+"@"+mesaj+"@"+_ user.getTag()+"@#";
for(Jucatori users : GameWorld.getJucatoriOnline())sendCommand(users.ge tChatThread().get_out(),packet);
}
Where _user.getTag() is a string. My question is why if the string is empty he still put the tag. []
In action script is simply if that string == null then put only name and message
else put tag name and message...
PS: i don't know if you can help me but maybe someone else
Sήøwy is offline  
Old 06/22/2013, 22:26   #3
 
linkpad's Avatar
 
elite*gold: 260
Join Date: Jul 2012
Posts: 299
Received Thanks: 812
The problem is, _user.getTag() is not really empty, maybe you have a white space in it.
linkpad is offline  
Old 06/22/2013, 22:38   #4
 
Sήøwy's Avatar
 
elite*gold: 1
Join Date: Aug 2010
Posts: 1,329
Received Thanks: 1,723
I tryed with all, i declared null, i replaced with Character.toString('\0'), i really dont know how this chat take the tag from packet...on action script i don't understand why it's not working.
Can we talk to an TS?
Sήøwy is offline  
Old 06/22/2013, 22:41   #5
 
linkpad's Avatar
 
elite*gold: 260
Join Date: Jul 2012
Posts: 299
Received Thanks: 812
If you want we can talk with skype, because I'm french and not english and I don't have any TS.
linkpad is offline  
Thanks
3 Users
Old 06/22/2013, 22:42   #6
 
Sήøwy's Avatar
 
elite*gold: 1
Join Date: Aug 2010
Posts: 1,329
Received Thanks: 1,723
Quote:
Originally Posted by linkpad View Post
If you want we can talk with skype, because I'm french and not english and I don't have any TS.
I send PM'
Sήøwy is offline  
Old 06/22/2013, 23:20   #7
 
elite*gold: 73
Join Date: May 2012
Posts: 517
Received Thanks: 548
Quote:
Originally Posted by linkpad View Post
If you want we can talk with skype, because I'm french and not english and I don't have any TS.
Happy to know that Ahah,

Give me your skype, can be useful to have you ..

Je sais pas pourquoi je te parle en anglais wesh.
DrSkyfall™ is offline  
Thanks
2 Users
Old 06/22/2013, 23:47   #8
 
Sήøwy's Avatar
 
elite*gold: 1
Join Date: Aug 2010
Posts: 1,329
Received Thanks: 1,723
Fixed:
Quote:
String mesaj = packet.split("\\%")[2]; mesaj = mesaj.substring(0, mesaj.length() - 1);
And the condition:
Quote:
String packet = null;
if(_user.getTag()!=null) packet = "a%"+camera+"@"+_user.getJucator()+"@"+mesaj+"@"+_ user.getTag()+"#";
else packet = "a%"+camera+"@"+_user.getJucator()+"@"+mesaj+" #";
for(Jucatori users : GameWorld.getJucatoriOnline())sendCommand(users.ge tChatThread().get_out(),packet);
Thanks for Linkpad also.
Sήøwy is offline  
Old 06/23/2013, 00:03   #9

 
Luffa's Avatar
 
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
Nice to see you found a solution to your problem.

Best Regards Zeta
Luffa is offline  
Thanks
4 Users
Old 06/23/2013, 00:14   #10
 
»Barney«'s Avatar
 
elite*gold: 0
Join Date: May 2012
Posts: 868
Received Thanks: 947
OMG Java is so ugly guys ... sorry I had to

alright, so back on topic, are you going to explain how you, a epvp user, are going to stop a team of lawyers get a private server down ?
»Barney« is offline  
Thanks
2 Users
Old 06/23/2013, 00:21   #11

 
Luffa's Avatar
 
elite*gold: 61
Join Date: Oct 2010
Posts: 1,188
Received Thanks: 2,403
Quote:
Originally Posted by chichi011 View Post
OMG Java is so ugly guys ... sorry I had to

alright, so back on topic, are you going to explain how you, a epvp user, are going to stop a team of lawyers get a private server down ?
HAHA java xD

Hmm, i can tell people how to prevent them knocking on your door
And evade a take down, if they is using force.

Anyways, illegal methods and dangerous things will NOT be posted.

// Zeta
Luffa is offline  
Old 06/23/2013, 01:48   #12
 
elite*gold: 73
Join Date: May 2012
Posts: 517
Received Thanks: 548
Quote:
Originally Posted by chichi011 View Post
OMG Java is so ugly guys ... sorry I had to

alright, so back on topic, are you going to explain how you, a epvp user, are going to stop a team of lawyers get a private server down ?


Good question who need a good answer ..

Maybe you need to know what they can and what they can't make ..

Lawyers from BP for example .. Can be powerful on Germany ? Maybe in Europe where the law is the same for everyone on this contry ..

But what happening if they need to close a server who is not in Germany, where the german law don't have any power to override that your contry law ??

Don't worry, the law is not perfect, it's why we can exploit it without problem .

A Copyright can be applicable in a lot of contry .. Just need to life in one that they can make nothing ... Life in or just host your website in ..

I just saying .. Don't need to follow my advice .
DrSkyfall™ is offline  
Thanks
1 User
Old 06/23/2013, 02:02   #13
 
elite*gold: 0
Join Date: Jul 2010
Posts: 56
Received Thanks: 5
ill go ahead and favorite this so i can keep a eye on it.. still not alot of help but im trying. as well as getting some work done on the .sql got quite a few aliens id's found so i can add them onto maps. already have 1-1 through 1-4 spawned out right. and only thing missing on them is the gate between 1-4 and 1-3. which i will be adding soon.
Havok1227 is offline  
Old 06/23/2013, 02:08   #14
 
Sήøwy's Avatar
 
elite*gold: 1
Join Date: Aug 2010
Posts: 1,329
Received Thanks: 1,723
These countries include Afghanistan, Ethiopia, Iran, and Iraq.
oh lol, why do i post that '-'
Sήøwy is offline  
Old 06/23/2013, 06:00   #15
 
elite*gold: 0
Join Date: Jul 2010
Posts: 56
Received Thanks: 5
does anyone happen to know where to locate/ add in the company bases? i have spawned all lowers maps - battle maps and i need to somehow add eic and vrus bases.
Havok1227 is offline  
Closed Thread

Tags
darkorbit, private, server, support, zeta


Similar Threads Similar Threads
Support's looking for a job on private server
10/31/2012 - SRO Private Server - 1 Replies
Hello, I'm looking for a position of support on an nice private server.What I understand by saying a nice server : -Stable server without shutting down every hour -Mature GM's -At least one English speaking GM or Support that I can communicate to or let him translate to others Other things are less important like ratios,free items etc. because I will be there to help other people and solving their problems. And now you propably want to see what I can give to your server ? I would...
Private Server Support
02/19/2011 - Metin2 Private Server - 3 Replies
Hy pvper's I want to make a metin2 private root server (probably i will buy a dedicated server :rolleyes:).Can someone recomand me a good server files and a client? I want something to look like the original one(like Metin2 - Oriental Action MMORPG) with original weapons and evrithing... P.S If it's posible i want them in english... Thx for suport:)
[Private server] Chase Q5k nice pserver and support
05/06/2009 - Grand Chase - 4 Replies
web : http://chaseq5k.servegame.com/chaseq5k download on the web :) -- hamachi : chase_testserver chase_testserver2 chase_testserver3 chase_testserver4 chase_testserver5



All times are GMT +2. The time now is 12:48.


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.