2 items

File information

Last updated

Original upload

Created by

olegbl

Uploaded by

olegbl

Virus scan

Safe to use

72 comments

  1. ZedDynamite
    ZedDynamite
    • member
    • 0 kudos
    Is there any chance this mod could be tweaked to enable runewords on unique items? I've already checked the Runed Unique Items mod but it works differently than with socket punching.
  2. emmetotter
    emmetotter
    • member
    • 0 kudos
    Could you make one similar to this but with perfect gems to use for socketing?
    1. olegbl
      olegbl
      • premium
      • 158 kudos
      You can just open your "config.json" and change the value of "item" to whatever item code you want (just change it from default to something else in mod's options first.)
    2. emmetotter
      emmetotter
      • member
      • 0 kudos
      I see the option lists, but I do not see Perfect Gems. The other options seems to make it too easy. Could you upgrade this to provide us the option to use Perfect Gems? It's hard to sacrifice a jewel that has good stats, where I can use that jewel for a socketed glove or boot with another mod. Gems on the other hand are pretty useless in modded Diablo. 
      I had a single player mod for D2LOD that used Perfect Gems for socketing and it was perfect. 
    3. koztaz2
      koztaz2
      • member
      • 0 kudos
      Here is a modified version that uses perfect gems (any combination) from the select list. I made it for myself, but the mod autor can include the code it if he wants.
  3. ronyalan
    ronyalan
    • member
    • 14 kudos
    a must have mod

    10/10 
  4. 4p3m4k3r
    4p3m4k3r
    • member
    • 0 kudos
    Hello,
    is it possible to remove all sockets from any item with a recipe?
    In case the item has less than maximum number of possible sockets.
    Or the item has the wrong number of sockets for a specific rune word.
    After removing the sockets its possible to create the needed amount of sockets.
    Would be helpfull.  ;-)
  5. Cerefkas
    Cerefkas
    • member
    • 2 kudos
    Hello, can you tell me if the mod is still relevant? I use it in conjunction with "More Sockets for D2RMM" (extra sockets in all gear (https://www.nexusmods.com/diablo2resurrected/mods/356).
    The socket does not work in rings and amulets. The other items work. I tried to dig into the code on my own, but I couldn't do anything to make the rings and amulets work.
    And I can't figure out if it's your mod or "More sockets" not working, as they are strongly related.
    Maybe there's something I didn't count on? Help please
    1. olegbl
      olegbl
      • premium
      • 158 kudos
      This mod only adds socket punching for armor and weapons, as it explains in the description:


      The code for this is here:
      Armor: https://github.com/olegbl/d2rmm.mods/blob/main/SocketPunching/mod.js#L43-L47
      Weapons: https://github.com/olegbl/d2rmm.mods/blob/main/SocketPunching/mod.js#L49-L53
      if you want to extend it to item types that don't normally support sockets in vanilla D2, you'd have to add another block like the ones above to the mod.
    2. Cerefkas
      Cerefkas
      • member
      • 2 kudos
      Thank you very much! Following your hint I added the lines 

          cubemain.rows.push({
      ...socketRecipe,
      description: `${socketRecipe.description} To Ring`,
      'input 1': '"ring"',
      });
      cubemain.rows.push({
      ...socketRecipe,
      description: `${socketRecipe.description} To Amulet`,
      'input 1': '"amul"',
      });

      to add a socket and 

        cubemain.rows.push({
      ...unsocketRecipe,
      description: `${unsocketRecipe.description} On Ring`,
      'input 1': `"ring,sock"`,
        });
        cubemain.rows.push({
      ...unsocketRecipe,
      description: `${unsocketRecipe.description} On Amulet`,
      'input 1': `"amul,sock"`,
        });

      after

        cubemain.rows.push({
      ...unsocketRecipe,
      description: `${unsocketRecipe.description} On Weapon`,
      'input 1': `"weap,sock"`,
        });

      to clear the socket and everything worked!

      P.S. I'll leave it here, maybe someone will find it useful.
    3. elSergey
      elSergey
      • member
      • 0 kudos
      Many thanks to you for mod modification 
    4. AalphaQ
      AalphaQ
      • member
      • 0 kudos
      Is there a way to get a formula to remove sockets? Say i've got a 1 soc viper and i wanted to turn it to 4 sockets, the formula to revert an item to 0 would be fantastic!

      Other than that tidbit, great utility and like a cheesy McyDees commercial, "I'm lovin' it!"
    5. olegbl
      olegbl
      • premium
      • 158 kudos
      This should be possible with the "uns" operator. The recipe would be practically identical to https://github.com/olegbl/d2rmm.mods/blob/main/SocketPunching/mod.js#L3-L36, just with "rem" replaced by "uns".
    6. AalphaQ
      AalphaQ
      • member
      • 0 kudos
      I'm sorry, but I am of simple mind and don't quite understand... I mean, I think I understand well enough from what you said, but am hesitant to adjust anything in lines of code - plus, I still want to be able to unsocket items without it resetting and I'm not sure if what you suggested would change the formula instead of adding on, so to speak. :-(
  6. Xzila
    Xzila
    • member
    • 0 kudos
    Enable on jewelry? for https://www.nexusmods.com/diablo2resurrected/mods/356 mod to socket belts, rings, etc.
    1. olegbl
      olegbl
      • premium
      • 158 kudos
      Belts should already work since they're a sub-type of armor. The comment below yours explains how to enable this functionality for jewelry, but I've also built it directly in to the mod in v1.2.
    2. Xzila
      Xzila
      • member
      • 0 kudos
      Thank you!
  7. Eemmitt22
    Eemmitt22
    • supporter
    • 0 kudos
    For some reason I can never add anymore than 3 sockets to an item, like armor.
    1. olegbl
      olegbl
      • premium
      • 158 kudos
      The mod does not override D2's normal socketing rules. An items' base type and item level still determine the maximum number of sockets it can have.
  8. Dunadd
    Dunadd
    • member
    • 0 kudos
    Can you add sockets to rare or unique weapons without them losing their rare/unique abilities with this?
  9. NaphaSun
    NaphaSun
    • member
    • 0 kudos
    Why isn't a socket made in Titan's Revenge Ceremonial Javelin?
    1. olegbl
      olegbl
      • premium
      • 158 kudos
      Throwing weapons are not socketable in Diablo 2.
  10. kimkjjin
    kimkjjin
    • member
    • 0 kudos
    Hi, I am having fun with your mode thanks you.

    I have a question.

    If this mode installed, original socket cube recipe doesn't work ?
     for example... 1 Ral + 1 Amn + 1 Perfect Amethyst + 1 Normal Weapon = Socketed Weapon

    thanks.
    1. olegbl
      olegbl
      • premium
      • 158 kudos
      This mod doesn't modify that recipe in any way.
    2. kimkjjin
      kimkjjin
      • member
      • 0 kudos
      thanks you~