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.
Newbie Spellweaver
Joined
Nov 4, 2017
Messages
8
Reaction score
0
Use proper client.Download one though ogrefest launcher.
i download client ogrefest, with launcher update, start server and after loggin in server - close client, in gameserver error - UNKNOW PACKET ....
 
Last edited:
Newbie Spellweaver
Joined
Dec 31, 2017
Messages
24
Reaction score
3
What? Ur explanation is totally nonsense lol
Not at all.Ok then.
If value set to 100 then 100 = 100%
Like this.
# Collection drop rate:# 100%rate.collection.drop = 100
If value is 1000000 then 1000000= 100%
Just divide value with 10000 and you get % value.
Like this.
# Enchant armor rates# Default: 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 357142, 256410, 172413, 117647, 76923, 62500, 50000, 40000, 28571, 20000, 20000, 20000, 20000, 20000, 20000rate.enchant.armor.level = 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 357142, 256410, 172413, 117647, 76923, 62500, 50000, 40000, 28571, 20000, 20000, 20000, 20000, 20000, 20000

Or like this.
# Multiplier percentage of critical damage dealt with character attacks# Default: 1500000CriticalDamageRate = 1500000
Which mean 1500000/10000 = 150%

Dont quite sure about f value.For f i guess we need check source code first to find out real coef.



Does anyone still have the server files link?
https://drive.google.com/file/d/1OvbwQo1r0kmqPE3OXQDCmuYonexQT4tL/view?usp=sharing
 
Elite Diviner
Joined
Feb 5, 2016
Messages
417
Reaction score
35
anyone know way to fix this : ERROR - An exception occured when reading a packet. java.lang.Exception: io.netty.handler.codec.TooLongFrameException: Adjusted frame length exceeds 16384: 20291 - discarded
i change value in Max income packet size and Max outcome packet size but it still show 16384
 
Junior Spellweaver
Joined
Dec 21, 2016
Messages
142
Reaction score
248
attack on mob 2-3 sec delayed damages, using default allocated 4gb on gameserver, any tips?

I had that issue as well. If you go to the "Server\gameserver\bin" and edit the gameserver.bat you need to increase RAM usage by editing this line:

"-Xmx4096m" to "-Xmx12G"

It doesn't have to be 12G but that's what I used since I have 32GB of RAM to spend. Something lower like "-Xmx8G" might work as well. Once I upped the RAM it became silky smooth.
 
Skilled Illusionist
Joined
Dec 4, 2013
Messages
353
Reaction score
56
@kbnnlan
Is so strange :O On my server I cannot see any boss warning on screen, and cannot see any boss if I'm going to summo zone.

I think that your java error is because you have a big number on any field and your server cannot read this number correctly.
 
Newbie Spellweaver
Joined
Apr 3, 2015
Messages
16
Reaction score
0
someone now how to solve this ? i was with server up like 4 Hours before i get this error i get error talkign about memory limit exceed or something else but i have 20 gb ram and 50 gb in HD server now i cant connect anymore i was playing in server before get this
cswLRSH - Black Desert Online (Java, Emulator, MongoDB) - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Dec 18, 2013
Messages
57
Reaction score
55
someone now how to solve this ? i was with server up like 4 Hours before i get this error i get error talkign about memory limit exceed or something else but i have 20 gb ram and 50 gb in HD server now i cant connect anymore i was playing in server before get this
cswLRSH - Black Desert Online (Java, Emulator, MongoDB) - RaGEZONE Forums
Set java path
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Jan 5, 2018
Messages
4
Reaction score
0
скинь ссылку на сервер



throw off the link to the server

 
Newbie Spellweaver
Joined
Apr 22, 2012
Messages
38
Reaction score
31
Isnt there a GM Command to spawn mobs?
Use that, Idk the actual command but you can do it like this for example:
/summon <mobId> <count>
As an example, its not a valid command but you get the idea.

There is but when I tried it it wasnt working

Code:

 [USER=2000161204]comman[/USER]dHandler(prefix = "spawn", accessLevel = EAccessLevel.ADMIN)
public class SpawnCommandHandler extends AbstractCommandHandler {
    [USER=2000161204]comman[/USER]dHandlerMethod
    public static Object[] index(final Player player, final String... params) {
        if (params.length > 0) {
            int formIndex = 0;
            int creatureId;
            int dialogId = -1;
            try {
                creatureId = Integer.parseInt(params[0]);
                if (creatureId <= 0) {
                    return AbstractCommandHandler.getRejectResult("Creature ID must be a positive/notnull number!");
                }
                if (params.length > 1) {
                    formIndex = Integer.parseInt(params[1]);
                }
                if (params.length > 2) {
                    dialogId = Integer.parseInt(params[2]);
                }
            } catch (NumberFormatException ex) {
                return AbstractCommandHandler.getRejectResult("Number format error.");
            } catch (ArrayIndexOutOfBoundsException ex2) {
                return AbstractCommandHandler.getRejectResult("Incorrect parameters count.");
            }
            final Location loc = player.getLocation();
            SpawnPlacementT placementT = new SpawnPlacementT(creatureId, formIndex, loc);
            if (dialogId != -1)
                placementT.setDialogIndex(dialogId);
            final Creature creature = Creature.newCreature(placementT);
            if (creature != null && creature.getActionStorage() != null) {
                World.getInstance().spawn(creature, true, false);
                return AbstractCommandHandler.getAcceptResult("Creature " + creature.toString() + "spawned successfully");
            }
        }
        return AbstractCommandHandler.getRejectResult("Creature didn't exist or error while spawn happened.");
    }
 
Initiate Mage
Joined
Jan 5, 2018
Messages
4
Reaction score
0
there is a server working and a site and money we type the command details skype welcome8788





I have a template I want to do under it

 
Status
Not open for further replies.
Back
Top