1. would it be possible to add any item from the games ?
     
  2. No not all item, i have add to day
    {
    "name": "lantern",
    "stackSize": 10
    },
     
  3. I added the HV ammo to my stack list, and it wont stack to 1000
     
  4. ddo

    ddo

    manything is not stack

    ladder
    cooked wolf meat
    grenade
    ...

    i did reload the plugin
     
  5. This works on my server, just copy paste in your cfg.
    Code:
    {
      "Config": {
      "items": [
       {
      "name": "lantern",
      "stackSize": 10
      },
      {
      "name": "bone_fragments",
      "stackSize": 10000
      },
      {
      "name": "ammo_rifle",
      "stackSize": 1000
      },
      {
      "name": "charcoal",
      "stackSize": 20000
      },
      {
      "name": "arrow_wooden",
      "stackSize": 100
      },
      {
      "name": "ammo_shotgun",
      "stackSize": 1000
      },
      {
      "name": "ammo_pistol",
      "stackSize": 1000
      },
      {
      "name": "blueberries",
      "stackSize": 100
      },
      {
      "name": "cloth",
      "stackSize": 5000
      },
      {
      "name": "bandage",
      "stackSize": 10
      },
      {
      "name": "largemedkit",
      "stackSize": 10
      },
      {
      "name": "box_wooden_large",
      "stackSize": 10
      },
      {
      "name": "fat_animal",
      "stackSize": 15000
      },
      {
      "name": "gunpowder",
      "stackSize": 10000
      },
      {
      "name": "lowgradefuel",
      "stackSize": 10000
      },
      {
      "name": "metal_fragments",
      "stackSize": 500000
      },
      {
      "name": "metal_ore",
      "stackSize": 20000
      },
      {
      "name": "metal_refined",
      "stackSize": 10000
      },
      {
      "name": "paper",
      "stackSize": 1000
      },
      {
      "name": "stones",
      "stackSize": 500000
      },
      {
      "name": "sulfur",
      "stackSize": 20000
      },
      {
      "name": "sulfur_ore",
      "stackSize": 100000
      },
      {
      "name": "wood",
      "stackSize": 500000
      }
      ]
      }
    }
     
    Last edited by a moderator: May 26, 2015
  6. Code:
    {
      "Config": {
        "items": [
          {
            "name": "bone_fragments",
            "stackSize": 50000
          },
          {
            "name": "charcoal",
            "stackSize": 50000
          },
          {
            "name": "cloth",
            "stackSize": 50000
          },
          {
            "name": "fat_animal",
            "stackSize": 50000
          },
          {
            "name": "gunpowder",
            "stackSize": 10000
          },
          {
            "name": "lowgradefuel",
            "stackSize": 10000
          },
          {
            "name": "metal_fragments",
            "stackSize": 50000
          },
          {
            "name": "metal_ore",
            "stackSize": 50000
          },
          {
            "name": "metal_refined",
            "stackSize": 10000
          },
          {
            "name": "paper",
            "stackSize": 10000
          },
          {
            "name": "stones",
            "stackSize": 1000000
          },
          {
            "name": "sulfur",
            "stackSize": 50000
          },
          {
            "name": "sulfur_ore",
            "stackSize": 1000000
          },
          {
            "name": "wood",
            "stackSize": 1000000
          },
          {
            "name": "ammo_handmade_shell",
            "stackSize": 1000
          },
          {
            "name": "ammo_pistol",
            "stackSize": 1000
          },
          {
            "name": "ammo_rifle",
            "stackSize": 1000
          },
          {
            "name": "ammo_shotgun",
            "stackSize": 1000
          },
          {
            "name": "woldmeat_cooked",
            "stackSize": 100
          },
          {
            "name": "ammo_rifle_hv",
            "stackSize": 1000
          },
          {
            "name": "ammo_pistol_hv",
            "stackSize": 1000
          },
          {
            "name": "wolfmeat_raw",
            "stackSize": 100
          }
        ]
      }
    }
    I take it that the HV ammo types dont stack yet? I am also having issues with the wolf meat cooked and wolfmeat raw not stacking?
     
    Last edited by a moderator: May 26, 2015
  7. Everything below wolfmeat does not work because wolfmeat is not spelt woldmeat :p
     
    Last edited by a moderator: May 27, 2015
  8. ddo

    ddo

    thanks, any misspelling word all the items below will be ignored
     
  9. The main issue you will have with items not stacking is they are not defined in the config, this plugin gives only the basics. In order to have more stackable items you will need to add them in manually to the config
     
  10. ddo

    ddo

    yea, i have to get the item codes in "itemconfig" config file :D
     
  11. thanks for the help OMNI-Hollow
     
  12. Np
     
  13. Edit: Disregard, figured it out. Thanks for the awesome plugin.
     
    Last edited by a moderator: May 29, 2015
  14. My server is a plugin Stack Sizes. But it changes the stacks of resources only buyout registered in the plugin. And I'd like a glass of chtoyuy I also bandages and first aid kits, etc. What you need to register in the config. This is the standard configuration
    Code:
    {
      "Config": {
        "items": [
          {
            "name": "bone_fragments",
            "stackSize": 10000
          },
          {
            "name": "charcoal",
            "stackSize": 10000
          },
          {
            "name": "cloth",
            "stackSize": 10000
          },
          {
            "name": "fat_animal",
            "stackSize": 10000
          },
          {
            "name": "gunpowder",
            "stackSize": 10000
          },
          {
            "name": "lowgradefuel",
            "stackSize": 10000
          },
          {
            "name": "metal_fragments",
            "stackSize": 10000
          },
          {
            "name": "metal_ore",
            "stackSize": 10000
          },
          {
            "name": "metal_refined",
            "stackSize": 10000
          },
          {
            "name": "paper",
            "stackSize": 10000
          },
          {
            "name": "stones",
            "stackSize": 100000
          },
          {
            "name": "sulfur",
            "stackSize": 10000
          },
          {
            "name": "sulfur_ore",
            "stackSize": 100000
          },
          {
            "name": "wood",
            "stackSize": 100000
          }
        ]
      }
    }
     
    Last edited by a moderator: May 29, 2015
  15. This worked for ages! Now after update I cant get it to work. I fixed log errors, installed plugin without changing and with changing. Still nothing... Do I need modify another part of the file now? Aside from config/items?
     
  16. Any chance I can get this plugin to make items with durability to stack? With the addition to be able to throw spears I want to be able to make spears stackable.

    Thanks
     
  17. Having the same problem. Looks like some items do stack as i configure them in the config, and some does not.. Having troubles after the latest rust update.
     
  18. This plugin does not seem to be working 100% now.. i am unable to get the spear_stone and spear_wooden to stack... i have the item in the config however they are not stacking any idea's?