Pug Development
  • ๐Ÿ‘‹Welcome To Pug Development
    • ๐Ÿ“ŒInformation
  • ๐Ÿ““Scripts
    • ๐Ÿ’ŽRobbery Creator
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
        • Mini Games
      • ๐Ÿ’กThings to know
        • ๐ŸŽจHow To Use
        • ๐ŸŽฎCustom Mini Games
        • ๐Ÿ’ฃCreate Explosion
        • ๐Ÿ“‘Tab Settings
        • ๐Ÿ“ฃBank Truck & ATM Alert
        • ๐Ÿ“ฑCustom Keypad
        • ๐Ÿ’ฑMove Steps Around
        • ๐Ÿ‘ปMake Props Disappear When Looted
        • ๐ŸคนRemove Kill Screen Effect
        • ๐ŸŽPreset Heist Progression
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ’ผBusiness Creator
      • ๐Ÿ“Installation
      • ๐Ÿ’กThings to know
        • ๐Ÿ”—Linking Jobs To The Menu
        • ๐Ÿ“ƒOpen Menu
        • ๐Ÿ”›Criminal crafting
        • ๐Ÿ›ฐ๏ธCreated Items
      • โ“FAQ
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ”ซPaint Ball
      • ๐Ÿ“Installation
        • ๐Ÿ‚ox_inventory
        • ๐ŸฆฅDispatch/Shots Fired
        • โŒqb-anticheat
      • ๐Ÿ“œDependency & Support
      • ๐Ÿ’กThings to know
        • ๐Ÿ—บ๏ธMap Making Tutorial
        • ๐Ÿ‘šSet Team Outfits
        • ๐Ÿ“…Scoreboard
        • ๐Ÿ”Surrender
    • ๐Ÿ› ๏ธRepo Job
      • ๐Ÿ“Installation
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ’‰Coke Business
      • ๐Ÿ“Installation
      • ๐Ÿ“œDependency & Support
    • ๐ŸŽฃFishing
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
        • ๐ŸŸFishing Lure
      • ๐Ÿ“œDependency & Support
      • ๐Ÿ’กThings to know
        • โ†—๏ธProgression
        • ๐Ÿ’ฏReputation
    • ๐Ÿ”ซWeapon Sling
      • ๐Ÿ“Installation
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ†Battle Royale
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
        • โ˜๏ธWeather Sync
        • ๐Ÿ‚ox_inventory
        • ๐ŸฆฅDispatch/Shots Fired
        • โŒqb-anticheat
      • ๐Ÿ“œDependency & Support
    • ๐Ÿš˜Car Chopping
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
      • ๐Ÿ“œDependency & Support
Powered by GitBook
On this page
  1. Scripts
  2. Battle Royale
  3. Installation
  4. Inventory Items

Ox Items

Follow The File Path to Setup Items.

ox_inventory/data/items.lua

Copy All items and Paste Directly Into file.

-- ROYALE ITEMS
["uav_royale"] = {
  label = "UAV",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "spyplane.png",
  },
},

["armor1_royale"] = {
  label = "Light armor",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "armor1.png",
  },
},

["armor2_royale"] = {
  label = "Medium armor",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "armor2.png",
  },
},

["armor3_royale"] = {
  label = "Heavy armor",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "armor3.png",
  },
},

["bandage_royale"] = {
  label = "Bandage",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "bandage.png",
  },
},

["jump_royale"] = {
  label = "Super Jump",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "jump.png",
  },
},

["juice_royale"] = {
  label = "Juice",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "bs_softdrink.png",
  },
},

["pug_vr"] = {
  label = "Vr Headset",
  weight = 2000,
  stack = true,
  close = true,
  description = "A simulation inside of a simulation.",
  client = {
    image = "pug_vr.png",
  },
},

["rifle_ammo_royale"] = {
  label = "Rifle ammo",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "rifle_ammo.png",
  },
},

["smg_ammo_royale"] = {
  label = "SMG ammo",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "smg_ammo.png",
  },
},

["pistol_ammo_royale"] = {
  label = "Pistol ammo",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "pistol_ammo.png",
  },
},

["shotgun_ammo_royale"] = {
  label = "Shotgun ammo",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "shotgun_ammo.png",
  },
},

["mg_ammo_royale"] = {
  label = "MG ammo",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "mg_ammo.png",
  },
},

["snp_ammo_royale"] = {
  label = "Sniper ammo",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "snp_ammo.png",
  },
},

["armorroyale_royale"] = {
  label = "Armor",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "armor.png",
  },
},

["healthroyale_royale"] = {
  label = "Health Kit",
  weight = 1000,
  stack = true,
  close = true,
  description = "USED IN ROYALE ONLY.",
  client = {
    image = "firstaid.png",
  },
},
PreviousQB itemsNextWeather Sync

Last updated 4 months ago

๐Ÿ““
๐Ÿ†
๐Ÿ“