SickScripts Documentation
SickScripts DiscordProject ALPHA DiscordTebex Store
  • Overview
    • 💡SickScripts
    • ✨Useful Links
    • 🎯Newest ESX
  • Shared Framework
    • 👮SickDirtyCops
      • Robbery Trigger
      • Installation
      • Config
      • Buy/Sell Shop
      • Updates
      • Custom Events
    • 🚗Sick2Step
      • SetUp
      • Usage
    • 🌱SickTrapHouses
      • Installation
      • Events
    • 🗒️SickWarrants
      • Events
      • Examples
    • 💣SickCarBombs
      • Items
      • Config
    • 📎SickLockers
      • Config
      • Events
      • QBCore Users
    • 💰SickMoneyWash
      • Usage
      • Config
    • 🗺️SickTeleport
      • Installation
      • Default Locations
      • Donators
      • Config
  • ESX Scripts
    • 🎟️SickFines-PEFCL
      • Events
    • 🧑‍💼SickTraders
      • Traders
    • 🌭SickFoodStands
    • 🍔SickUpNAtom
      • General info
      • Ordering
      • Job Info
      • Boss Menu
  • 🔒SickJail
    • Events/Exports
    • Examples
    • Jobs
    • Drug Bag
    • Prison Break
    • Stashes
  • 📄SickReports
    • Options
  • 🇫🇲SickSafeZones
    • Info
    • Music
    • AirDrops
    • ScrapCars
  • QBCore
    • 🏨SickApartmentSelect
Powered by GitBook
On this page
  1. Shared Framework
  2. SickCarBombs

Items

To get started we just need to add a few items to our DB or if using Ox_Inventory put them in your items.lua! Below are the needed items for this to work:

Database SQL
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES 
    ('ied_timer', 'Timer Explosive Device', 1, 0, 1),
    ('ied_speed', 'Speed Explosive Device', 1, 0, 1),
    ('ied_remote', 'Remote Explosive Device', 1, 0, 1),
    ('ied_delayed', 'Delayed Explosive Device', 1, 0, 1),
    ('ied_instant', 'Instant Explosive Device', 1, 0, 1),
;
ox_inventory/data/items.lua
['ied_timer'] = {
    label = 'Timer IED',
    weight = 1,
    stack = true,
    close = true,
},

['ied_speed'] = {
    label = 'Speed IED',
    weight = 1,
    stack = true,
    close = true,
},

['ied_remote'] = {
    label = 'Remote IED',
    weight = 1,
    stack = true,
    close = true,
},

['ied_delayed'] = {
    label = 'Delayed IED',
    weight = 1,
    stack = true,
    close = true,
},

['ied_instant'] = {
    label = 'Instant IED',
    weight = 1,
    stack = true,
    close = true,
},

PreviousSickCarBombsNextConfig
💣