[PAID] DL STORAGES - Storage and Bag System [VORP]




Howdy folks,
im proud to present to you my new Storage System.
This System allows you to create Storage Items like Boxes, Cupboard or Bags.

Get it here: https://drshwaggins-scripts.tebex.io/package/5855834
Showcase Video: https://youtu.be/JjLrjQpgcGM


Feature List

  • Multiple Storage Types
    Create as many Storage and Bag Types as you Like.

  • Placeable Storages
    Place Storages on the ground and lock them with a Pincode

  • Carryable Storages
    Create Bags players can carry and store items in them

  • Shared Storages
    Every Storage Item (Storages and Bags) is using metadata so the stored Items are binded to the Storage Item.

  • Configurations
    Setup the Storage Types for your needs. Want to create a Large Storage Box for Weapons and Items ? No Problem.
    Want to create a Weapon only crate? No Problem.
    Want to Blacklist or limit items in specific storage ? You can do it all in the Config !
    The Script is also 100% Translateable






Example Config:

Config = {}
Config.Locale = 'en'

Config.BackUpModelHash = "p_storagebox01x"

Config.ArmoryMarkerR = 255
Config.ArmoryMarkerG = 255
Config.ArmoryMarkerB = 255
Config.ArmoryMarkerAlpha = 255

Config.AllowNonEmptyPickup = false


Config.StorageItems = {

    -- LARGE STORAGE BOX
    {
      item = "large_storagebox",  -- STORAGE ITEM USED IN INV TO PLACE THE STORAGE
      modelHash = "p_storagebox01x",
      storageSpace = 100, -- max items allowed to store | Minimum Value = 1
      allowWeapons = true,  -- Are Weapons Allowed
      jobAllowed = {"sherrif","police"}, -- PLAYERS WITH THIS JOB DOESENT NEED THE PASSWORD TO OPEN THIS STORAGE TYPE
      blacklistedItems = {"water"},  -- ITEMS AND WEAPONS WHO SHOULDNT BE ALLOWED IN THE STORAGE | if -1 no items are allowed (Weapons still allowed)
      itemLimits = {
        {name="bread",amount=10}, -- MAX 10 Bread Allowed in Storage
      },
      weaponLimits = {
        {name="WEAPON_REPEATER_CARBINE",amount=1}, -- MAX 1 'WEAPON_REPEATER_CARBINE' Allowed in Storage
      },
    },


    -- SMALL STORAGE BOX
    -- {
    --   item = "",
    --   modelHash = "p_storagebox01x",
    --   storageSpace = 50,
    --   allowWeapons = false,
    --   jobAllowed = {""},
    --   blacklistedItems = {""},
    --
    --   },
    --   weaponLimits = {
    --
    --   },
    -- },


    -- WEAPON CRATE
    -- {
    --   item = "",  -- STORAGE ITEM USED IN INV TO PLACE THE STORAGE
    --   modelHash = "p_storagebox01x",
    --   storageSpace = 5, -- max items allowed to store
    --   allowWeapons = true,  -- Are Weapons Allowed
    --   jobAllowed = {""}, -- PLAYERS WITH THIS JOB DOESENT NEED THE PASSWORD TO OPEN THIS STORAGE TYPE
    --   blacklistedItems = -1,  -- ITEMS AND WEAPONS WHO SHOULDNT BE ALLOWED IN THE STORAGE | if -1 no items are allowed (Weapons still allowed)
    --   itemLimits = {
    --
    --   },
    --   weaponLimits = {
    --
    --   },
    -- },
}


Config.StorageBags = {

  -- SMALL BAG
  {
    item = "small_bag",  -- STORAGE ITEM USED IN INV TO PLACE THE STORAGE
    storageSpace = 100, -- max items allowed to store | Minimum Value = 1
    allowWeapons = false,  -- Are Weapons Allowed
    blacklistedItems = {"water"},  -- ITEMS AND WEAPONS WHO SHOULDNT BE ALLOWED IN THE STORAGE | if -1 no items are allowed (Weapons still allowed)
    itemLimits = {
      {name="bread",amount=10}, -- MAX 10 Bread Allowed in Storage
    },
    weaponLimits = {
      {name="WEAPON_REPEATER_CARBINE",amount=1}, -- MAX 1 'WEAPON_REPEATER_CARBINE' Allowed in Storage
    },
  },

}


Code is accessible No
Subscription-based No
Lines (approximately) 1000
Requirements vorpcore, vorp_inventory, menuapi, oxmysql
Support Yes
2 Likes

Hi there! This looks to be exactly the storage script my server has been looking for and we purchased it today. I was wondering if it could be made possible to limit so that only certain items that can go into bag/storage box rather than having to deny list all the items except the ones you want to be allowed in it? I would love to create medical bags, herb bags, etc. but right now that would be a lot of extra unnecessary lines in the config unless I am misunderstanding something. :smiley: Thanks in advance!

New Update:
Fixed a problem in the SQL File that could cause errors

New Update:

  • You can now create personal Storages which can only be opened by persons who placed it
  • You can now setup the dial counter so you can setup combinations with x amount of numbers