Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Black Desert Online (Java, Emulator, MongoDB)

Status
Not open for further replies.
Joined
Apr 16, 2007
Messages
441
Reaction score
204
Re: Black Desert Online

Nice work
OnFleek - Black Desert Online (Java, Emulator, MongoDB) - RaGEZONE Forums

how did you get it working?
 
Newbie Spellweaver
Joined
Dec 31, 2017
Messages
24
Reaction score
3
Re: Black Desert Online

BTW what launcher you use?
 
(⌐■_■)
Joined
Feb 2, 2012
Messages
681
Reaction score
102
Re: Black Desert Online

there is a mess in launcher src, can't figure it out with missing references and wrong methods names
it's even inheriting from a decompiled class :(
hopping someone uploads a more clearer one or even compiled if he succeeded compiling it.
 
Last edited:
Joined
Sep 23, 2012
Messages
470
Reaction score
178
Re: Black Desert Online

1)Download Server
2)Download Client
3)Download MongoDB
4)Install MongoDB
5)Start mongod.exe in folder MongoDB\Server\3.6\bin
5)Start MongoDB Compass and setting connection default host:localhost port:27017
6)folder data transferring in folder gameserver
7)start loginserver and gameserver
8)start mongo.exe in folder MongoDB\Server\3.6\bin and write query create account in loginserver
Code:
use loginserver
db.createUser(
  {
    user: "login",
    pwd: "password",
    roles: [ { role: "readWrite", db: "loginserver" } ]
  }
)
9)Open folder client and create label and enter the login and password of the created account
admin - login
123456 - pass
OnFleek - Black Desert Online (Java, Emulator, MongoDB) - RaGEZONE Forums

10)Start this label
11)Have a good game

if this error
BzZ5406 - Black Desert Online (Java, Emulator, MongoDB) - RaGEZONE Forums

need create service.ini in folder gameclient
Code:
[SERVICE]
TYPE=NA
RES=_EN_
nationType=1
damageMeter=1
[NA]
AUTHENTIC_DOMAIN=127.0.0.1
AUTHENTIC_PORT=8888
PATCH_URL=http://downtest1.black.game.daumserver.com/patch/
OnFleek - Black Desert Online (Java, Emulator, MongoDB) - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
(⌐■_■)
Joined
Feb 2, 2012
Messages
681
Reaction score
102
Re: Black Desert Online

didn't even think about simply expecting those parameters lmao
 
Junior Spellweaver
Joined
Dec 10, 2014
Messages
120
Reaction score
44
Re: Black Desert Online

thank you man, finally... tried everything except creating a user in loginserver xDDD really thnx for this. ( well and doing wrong the parameters things... without that also will never found the way to doit )
 
Newbie Spellweaver
Joined
Jan 1, 2018
Messages
21
Reaction score
0
Re: Black Desert Online

Getting this error:

once i click ok i get this:

then it closes after i click ok again, any idea why this is happening?
 
Junior Spellweaver
Joined
Dec 10, 2014
Messages
120
Reaction score
44
Re: Black Desert Online

you start with a direct link?

then in destination you need to add those parameters
 
Newbie Spellweaver
Joined
Jan 1, 2018
Messages
21
Reaction score
0
Re: Black Desert Online

starting it with a shortcut as you cant add parameters to the executable itself:
 
Newbie Spellweaver
Joined
May 11, 2017
Messages
22
Reaction score
3
Re: Black Desert Online

This is my first time using mongodb, can someone give me a tutorial on how to add the databases? I tried to create a database, but it seems that I only get the option to create new ones completely from scratch but no options to import existing ones. i tried googling but i can't figure out how to connect the database with the BDO server files. Help would be greatly appreciated!
 
Joined
Sep 23, 2012
Messages
470
Reaction score
178
Re: Black Desert Online

This is my first time using mongodb, can someone give me a tutorial on how to add the databases? I tried to create a database, but it seems that I only get the option to create new ones completely from scratch but no options to import existing ones. i tried googling but i can't figure out how to connect the database with the BDO server files. Help would be greatly appreciated!

the database is automatically created when you start the loginserver and gameserver
 
Status
Not open for further replies.
Back
Top