Diablo II: Resurrected
0 of 0

File information

Last updated

Original upload

Created by

olegbl

Uploaded by

olegbl

Virus scan

Safe to use

Tags for this mod

46 comments

  1. SkurpTheYurp
    SkurpTheYurp
    • member
    • 0 kudos
    Incredible mod my man, just wondering though, for the Warning on "Convert When Destacking" options info, is it the creation of a new game that gets the slowdown, or the boot of the game itself. if its every single newly opened game, ill probably refrain, but if its just the boot of d2r itself its worth.

    Just unsure, thanks for the mod though!
    1. olegbl
      olegbl
      • premium
      • 110 kudos
      The cold boot of the entire game - that's when D2R has to parse the thousands of cube recipes we need to add for this feature. (You can also feel free to experiment with toggling that setting on and off to test - it does not affect save games.)
  2. Daitaro
    Daitaro
    • supporter
    • 0 kudos
    Fantastic mod!

    Question - Is there a place in the code that I can modify out certain qualities of gems? I would like all gems to default to stackable except flawless. I cube those into perfects, and then I wish to have the perfect and chipped stackable. This would be fantastic!
    1. olegbl
      olegbl
      • premium
      • 110 kudos
      It's not entirely straightforward, but you'd need to early exit here for the item codes that you don't want to default to stackable.

      e.g. (off the top of my head):
      treasureclassex.rows.forEach((treasureclass) => {
        function convertToStackIgnoringFlawless(type) {
          if (['gzv', 'gly', 'glr', 'glw', 'glg', 'glb', 'skl'].includes(type)) {
            return type;
          }
          return converItemTypeToStackItemType(type);
        }
        treasureclass.Item1 = convertToStackIgnoringFlawless(treasureclass.Item1);
        treasureclass.Item2 = convertToStackIgnoringFlawless(treasureclass.Item2);
        treasureclass.Item3 = convertToStackIgnoringFlawless(treasureclass.Item3);
        treasureclass.Item4 = convertToStackIgnoringFlawless(treasureclass.Item4);
        treasureclass.Item5 = convertToStackIgnoringFlawless(treasureclass.Item5);
        treasureclass.Item6 = convertToStackIgnoringFlawless(treasureclass.Item6);
        treasureclass.Item7 = convertToStackIgnoringFlawless(treasureclass.Item7);
      });
  3. juchan87
    juchan87
    • member
    • 0 kudos
  4. fialla
    fialla
    • member
    • 0 kudos
    Hello, I sold by accident a single lv4 "stacked" gem, and this is what I get now if I want to buy it back: https://i.imgur.com/0NBk6x4.png
    A full stack of 256 gems. Any chance this might get fixed?
    Ty anyway, awesome mods... just downloaded D2R after years of solo playing old D2 and loving your mods so far.
    1. olegbl
      olegbl
      • premium
      • 110 kudos
      No, this is something that would need to be fixed by Blizzard. (e.g. You can use the same trick with quivers, tomes, etc...)
  5. wlcksdnr87
    wlcksdnr87
    • member
    • 0 kudos
    Thanks for your great job. But I have issue on this mod.
    "Mod Stackable Runes encountered an error! Error: API.extractFile: Failed to read file in CASC storage (hd\items\items.json): (CascLib Error Code: 11) at mod.js:20:21 at mod.js:243:3 at VM.runScript (C:\Users\jcw87\OneDrive\바탕 화면\D2RMM 1.5.0\resources\app.asar\node_modules\vm2\lib\mod.js:287:18) at C:\Users\jcw87\OneDrive\바탕 화면\D2RMM". I don't know why this issue happen. 
    Can i fix it?
  6. LasagnaTheories
    LasagnaTheories
    • premium
    • 11 kudos
    Excellent work! I'm encountering an issue that I think has to do with the stash though. In the personal tab, I am able to stack two stacks of gems together, but in a shared tab nothing happens.

    I've tried with and without the expanded stash for d2rmm mod, same results.

    Any ideas?
    1. olegbl
      olegbl
      • premium
      • 110 kudos
      This is a limitation of D2R. You cannot stack anything in the shared stash (tomes, quivers, etc...). Blizzard would have to fix that one.
  7. Stealan88
    Stealan88
    • member
    • 0 kudos
    Any chance you could add: Destack bulk? Cubing GC's with pgms would be easier with bulk destack of pgems :)
  8. ToenailTheLit
    ToenailTheLit
    • member
    • 0 kudos
    I know I saw recipes somewhere... but now I cannot find them. 

    How to upgrade a stack of 30 gems to 10 of the next tier?
    I cannot figure it out. I need help. 
    1. olegbl
      olegbl
      • premium
      • 110 kudos
      Enable `bulkUpgrade` option in the settings (see tooltip for recipe: "stack of 30 gems + 1 id scroll = stack of 10 gems of the next highest tier"). Install mods. Use recipe.
    2. ToenailTheLit
      ToenailTheLit
      • member
      • 0 kudos
      That's what I thought it was. 

      We tried it. Then various other scrolls and tomes as well.
      Nothing worked.

      I check the BulkUpgrade option and it is selected and the "install mods" has been run on several occasions. 

      We do have a few other mods on. like stackable runes. But none as far as I'm aware have a similar bulk upgrade option. 

      Any known incompatible mods with this one?
    3. olegbl
      olegbl
      • premium
      • 110 kudos
      Feel free to check out the code in the PR that added this: https://github.com/olegbl/d2rmm.mods/commit/c0481ae281fc4ec3e73149098bbfe64de2b74e95

      Conflicts can exist if some other cube recipe matches 30+ stacked gems and an id scroll.
  9. lorddli
    lorddli
    • premium
    • 1 kudos
    Can't seem to effectively disable/remove/uninstall this mod. I keep getting stackable gems drop eventhough I have undone all my gems with the cube. I would love to see a detailed uninstallation guide in the description?

    Edit: Even new chars getting the stackable gems...
    1. olegbl
      olegbl
      • premium
      • 110 kudos
      Did you hit "Install Mods" after unchecking the mod in D2RMM?
    2. lorddli
      lorddli
      • premium
      • 1 kudos
      I suppose that would do the trick but now the game crashes after pressing a button to continue. Don't tell me I need to uninstall the entire game to be rid of this one mod?
    3. olegbl
      olegbl
      • premium
      • 110 kudos
      Please see the D2RMM FAQ:
  10. PaddyVu2
    PaddyVu2
    • member
    • 0 kudos
    Does it make gems become 2x effect? Or it's just stack for saving inventory slot?