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",
  },
},

Last updated