[RELEASE] Quality of life gameserver mods

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 48
  1. #16
    Valued Member logankioma is offline
    MemberRank
    Aug 2012 Join Date
    142Posts

    Re: [RELEASE] Quality of life gameserver mods

    Deleted
    Last edited by logankioma; 07-05-18 at 06:59 PM.

  2. #17
    Apprentice momz is offline
    MemberRank
    May 2016 Join Date
    22Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by logankioma View Post
    gameserver.jar of the source updated by the DNC with all the mods applied, good profit...
    Link updated with gameserver.jar fixed.
    Link: https://mega.nz/#!Vq4hjapK!fes5FYEgP...6Oub6zFKRA02o8
    Thanks for ur help ! :)

  3. #18
    Enthusiast feanturi is offline
    MemberRank
    Mar 2018 Join Date
    PolandLocation
    28Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by logankioma View Post
    Update Full.
    Files that I am currently using, all mods quoted here already implemented in the source updated by DNC ... To use these files just place the folder database. PS. does not have geodata. Anyone who continues to update these files, please post the updates here.
    Link: https://mega.nz/#!VyolEZwY!sKOaoV_7q...MyM83bElGYtZKM
    Does this uses same gameserver.jar that you posted before?

  4. #19
    Valued Member logankioma is offline
    MemberRank
    Aug 2012 Join Date
    142Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by feanturi View Post
    Does this uses same gameserver.jar that you posted before?
    Exactly the same...

  5. #20
    Enthusiast danky is offline
    MemberRank
    Mar 2018 Join Date
    29Posts

    Re: [RELEASE] Quality of life gameserver mods

    Any way to make it not stack stuff like seeds when the drop multiplier triggers?


    EDIT:After considering it more, I do like how it stacks them, is it safe to do so?
    Last edited by danky; 22-04-18 at 02:28 PM.

  6. #21
    Enthusiast feanturi is offline
    MemberRank
    Mar 2018 Join Date
    PolandLocation
    28Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by danky View Post
    [...] I do like how it stacks them, is it safe to do so?
    They are all marked as "stackable" in database, so it should be fine. For what it's worth, I never had server or client crashed because of this.

  7. #22
    Enthusiast danky is offline
    MemberRank
    Mar 2018 Join Date
    29Posts

    Re: [RELEASE] Quality of life gameserver mods

    Thank you, I will keep it like it is.
    Maybe you could tell me how I could make it so that anyone can use the stove and alchemy station at someones house, and ignore durability? That would be a great quality of life addition :)

  8. #23
    Apprentice suhyuntk is offline
    MemberRank
    Sep 2014 Join Date
    서울특별시Location
    10Posts

    Re: [RELEASE] Quality of life gameserver mods

    How to skills cooltime fix?? I want no cooltime skill.. but nobody skill cooltime fix solution.

  9. #24
    Enthusiast feanturi is offline
    MemberRank
    Mar 2018 Join Date
    PolandLocation
    28Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by danky View Post
    Thank you, I will keep it like it is.Maybe you could tell me how I could make it so that anyone can use the stove and alchemy station at someones house, and ignore durability? That would be a great quality of life addition :)
    Now mind you, I didn't tested it at all, but from what I can see as a quick hack you should be able to "disable" durability decresing by commenting out following line:

    StartAlchemyHouseEvent.java:
    Code:
        @Override
        public void onEvent() {
            // this.houseInstallation.setEndurance(this.houseInstallation.getEndurance() - 1);
            this.player.sendBroadcastItSelfPacket(new SMListFixedHouseInstallations(this.houseHold, Collections.singleton(this.houseInstallation), EPacketTaskType.Add));
            this.player.sendPacket(new SMStartAlchemy(this.alchemyType, this.messageId, this.type));
        }
    I may write a proper configurable mod for this later.
    As for ability to use stations that you don't own, you're on your own on that one.

    Quote Originally Posted by suhyuntk View Post
    How to skills cooltime fix?? I want no cooltime skill.. but nobody skill cooltime fix solution.
    You can edit skills cooldowns in sqlite. Table Skill_Table_New column ReuseCycle. Value is in miliseconds.

    Step 1: Find skill you want to edit on dbdatabase.net
    Step 2: Note its ID - for example, Witch's Earthquake I have ID 786
    Step 3: Get a SQLite editor, like DBeaver, for example.
    Step 4: Open gameserver\bin\data\sqlite3\bdo.sqlite3 with it.
    Step 5: Locate Skill_Table_New table and look for record with SkillNo equal to ID you got from bddatabase.
    Step 6: Edit value of ReuseCycle.
    Step 7: Repeat for all skills you would like to edit.

    Hope it helps :)

  10. #25
    Apprentice nvidiati422 is offline
    MemberRank
    Jan 2018 Join Date
    9Posts

    Re: [RELEASE] Quality of life gameserver mods

    first I gotta say, I really appreciate your work for this source.

    I got a problem which has been mentioned in the following post:
    http://forum.ragezone.com/f999/java-...0/#post8858320
    it's a skin synchronisation bug.
    and it seems not much people notice that problem and no one ever discussing about the solution yet.
    would you mind to take a look at this bug? that will be a very big help.

  11. #26
    Apprentice suhyuntk is offline
    MemberRank
    Sep 2014 Join Date
    서울특별시Location
    10Posts

    Re: [RELEASE] Quality of life gameserver mods

    Thanks !!!
    I fixed Reusecycle table.
    But....
    In-game cooldown no changed :(
    (I used skill, Cooldown is default. no changed)
    (ex. 6500 change to 100, but in game 6.5s cooldown)
    (Warrior skill Charging thrust Id 1022,1130,1131,1132 all changed reusecycle)

    Will you test once Plz :)
    I'm Fail...
    Last edited by suhyuntk; 30-04-18 at 03:51 AM.

  12. #27
    Developer DNC is offline
    DeveloperRank
    Oct 2011 Join Date
    2,493Posts

    Re: [RELEASE] Quality of life gameserver mods

    Some skills aren't just change a value and you're done.
    Some skills rely on the coded functionality in place at the moment.
    Which means you need to break out that particular skill from the current functionality. A valid way to do so, writing in new functionality for that skill alone (or possibly more than just the one skill - depending on what you're trying to accomplish).
    I've done so for the skill toggle code. You'll just have to sort out how and see what you can do yourself.

  13. #28
    Valued Member logankioma is offline
    MemberRank
    Aug 2012 Join Date
    142Posts

    Re: [RELEASE] Quality of life gameserver mods

    I also want to know, but when you raise a lvl appears some items that you win, I want to change these items, but I do not know where to change ... If someone knows the place, let me know.

  14. #29
    Enthusiast danky is offline
    MemberRank
    Mar 2018 Join Date
    29Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by logankioma View Post
    I also want to know, but when you raise a lvl appears some items that you win, I want to change these items, but I do not know where to change ... If someone knows the place, let me know.
    You can use DB browser for sqlite, and edit the "Challenge_Table" "BaseReward""
    The example below is the reward for hitting lvl 10: You can ADD to the reward, but it seems like a bad idea to eraser what's there. the reward is "item(51,0,1);"
    51 is the item ID, Zed would be the enchant level of said item, and one will be the amount of the item.So you can add this to the end of the base reward to gain a plus 5 Ain Axe:
    ;item(10606,5,1)


    Code:
    "10"    "10"    "3021"    "1"    "[Level 10] Don""t call me a Noob, anymore!"    "There are lots of things you can try in the Black Desert world; you can strengthen your character through battles against monsters, contribute to society by solving quests, or acquire a variety of goods by carrying out activities such as fishing. Do as you please and enjoy!"            "2"    "10"    "0"    "0"    "0"    "item(51,0,1);item(15923,0,1);item(15035,0,1);"    "item(15036,0,1);item(15037,0,1);item(15041,0,1);item(15042,0,1);"    "1"    "1"    "1"

    EDIT:
    Quote Originally Posted by feanturi View Post
    Now mind you, I didn't tested it at all, but from what I can see as a quick hack you should be able to "disable" durability decresing by commenting out following line:
    Hope it helps :)
    You can also do the same trick in GetBuffFromHouseInstallationEvent & RequestJukeboxEvent
    One other thing, I am still unable to allow anyone to use said items, I believe it has to do with the characterkey and all that, Is there a way to ignore the characterkey when inside a home, not for any installations, just the ones that can apply a buff, and not the home owners storage container, actually, yes I would allow this and revel with joy as players began sneaking into others houses and robbing them blind :))
    Last edited by danky; 05-05-18 at 10:59 AM.

  15. #30
    Valued Member logankioma is offline
    MemberRank
    Aug 2012 Join Date
    142Posts

    Re: [RELEASE] Quality of life gameserver mods

    Quote Originally Posted by danky View Post
    You can use DB browser for sqlite, and edit the "Challenge_Table" "BaseReward""
    The example below is the reward for hitting lvl 10: You can ADD to the reward, but it seems like a bad idea to eraser what's there. the reward is "item(51,0,1);"
    51 is the item ID, Zed would be the enchant level of said item, and one will be the amount of the item.So you can add this to the end of the base reward to gain a plus 5 Ain Axe:
    ;item(10606,5,1)


    Code:
    "10"    "10"    "3021"    "1"    "[Level 10] Don""t call me a Noob, anymore!"    "There are lots of things you can try in the Black Desert world; you can strengthen your character through battles against monsters, contribute to society by solving quests, or acquire a variety of goods by carrying out activities such as fishing. Do as you please and enjoy!"            "2"    "10"    "0"    "0"    "0"    "item(51,0,1);item(15923,0,1);item(15035,0,1);"    "item(15036,0,1);item(15037,0,1);item(15041,0,1);item(15042,0,1);"    "1"    "1"    "1"

    EDIT:


    Also at line 70:
    Code:
    if (this.houseInstallation.getEndurance() <= 0) {
                this.houseInstallation.setEndurance(this.houseInstallation.getEndurance() + 10);
            }
    You can also do the same trick in GetBuffFromHouseInstallationEvent & RequestJukeboxEvent
    One other thing, I am still unable to allow anyone to use said items, I believe it has to do with the characterkey and all that, Is there a way to ignore the characterkey when inside a home, not for any installations, just the ones that can apply a buff, and not the home owners storage container, actually, yes I would allow this and revel with joy as players began sneaking into others houses and robbing them blind :))
    I added the Capotia accessories, but it did not appear...
    ==========================================================================================================================
    126 3162 1 [Level 61] Good of War Throught this was the end of it... not yet. 2 61 0 0 0 item(12053,0,1); 1 1 1
    ==========================================================================================================================



Page 2 of 4 FirstFirst 1234 LastLast

Advertisement