God Studios
Discord
  • Welcome
  • GOD - Prop Robbery & Selling System
    • How It Works
    • Code Breakdown
    • Customization
  • GOD -Dynamic Spotlights & Detection System
    • How It Works
    • Code Breakdown
    • Customization
  • GOD - Laser System
    • Overivew
    • Usage
  • GOD - Crosshair Generator
  • God - Impound System
    • How It Works
    • Installation Guide: Impound System
  • GOD - Car Parts Stealing
    • How It Works
    • Installation Guide: Car Parts Stealing
  • GOD - Nail Trap System
    • How It Works
    • Installation Guide: Nail Trap System
    • Configuration Guide: Nail Trap System
Powered by GitBook
On this page
  • Requirements
  • Inventory Setup
  • ox_inventory
  • qb-inventory
  • Discord Logs
  1. GOD - Car Parts Stealing

Installation Guide: Car Parts Stealing

PreviousHow It WorksNextGOD - Nail Trap System

Last updated 3 months ago

Requirements

You Need To Install These Script


Inventory Setup

ox_inventory

Copy the items below and paste them into ox_inventory/data/items.lua.

-- Wheels
['acls_wheel'] = {
    label = 'A-Class Wheel',
    weight = 1000,
    client = { image = 'acls_wheel.png' },
},
['apluscls_wheel'] = {
    label = 'A+ Class Wheel',
    weight = 1000,
    client = { image = 'apluscls_wheel.png' },
},
['scls_wheel'] = {
    label = 'S-Class Wheel',
    weight = 1000,
    client = { image = 'scls_wheel.png' },
},
['spluscls_wheel'] = {
    label = 'S+ Class Wheel',
    weight = 1000,
    client = { image = 'spluscls_wheel.png' },
},

-- Engines
['acls_engine'] = {
    label = 'A-Class Engine',
    weight = 3000,
    client = { image = 'acls_engine.png' },
},
['apluscls_engine'] = {
    label = 'A+ Class Engine',
    weight = 3000,
    client = { image = 'apluscls_engine.png' },
},
['scls_engine'] = {
    label = 'S-Class Engine',
    weight = 3000,
    client = { image = 'scls_engine.png' },
},
['spluscls_engine'] = {
    label = 'S+ Class Engine',
    weight = 3000,
    client = { image = 'spluscls_engine.png' },
},

-- Turbos
['acls_turbo'] = {
    label = 'A-Class Turbo',
    weight = 1500,
    client = { image = 'acls_turbo.png' },
},
['apluscls_turbo'] = {
    label = 'A+ Class Turbo',
    weight = 1500,
    client = { image = 'apluscls_turbo.png' },
},
['scls_turbo'] = {
    label = 'S-Class Turbo',
    weight = 1500,
    client = { image = 'scls_turbo.png' },
},
['spluscls_turbo'] = {
    label = 'S+ Class Turbo',
    weight = 1500,
    client = { image = 'spluscls_turbo.png' },
},

-- Nitro
['acls_nitro'] = {
    label = 'A-Class Nitrous',
    weight = 2000,
    client = { image = 'acls_nitro.png' },
},
['apluscls_nitro'] = {
    label = 'A+ Class Nitrous',
    weight = 2000,
    client = { image = 'apluscls_nitro.png' },
},
['scls_nitro'] = {
    label = 'S-Class Nitrous',
    weight = 2000,
    client = { image = 'scls_nitro.png' },
},
['spluscls_nitro'] = {
    label = 'S+ Class Nitrous',
    weight = 2000,
    client = { image = 'spluscls_nitro.png' },
},

-- CarPlay
['carplay_nnclass'] = {
    label = 'CarPlay',
    weight = 2000,
    client = { image = 'CarPlay.png' },
},

qb-inventory

Copy the items below and paste them into qb-core/shared/items.lua.

-- A-Class Items
acls_wheel = {
    name = 'acls_wheel',
    label = 'A-Class Wheel',
    weight = 1000,
    type = 'item',
    image = 'acls_wheel.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A-Class Wheel'
},
acls_engine = {
    name = 'acls_engine',
    label = 'A-Class Engine',
    weight = 3000,
    type = 'item',
    image = 'acls_engine.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A-Class Engine'
},
acls_turbo = {
    name = 'acls_turbo',
    label = 'A-Class Turbo',
    weight = 1500,
    type = 'item',
    image = 'acls_turbo.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A-Class Turbo'
},
acls_nitro = {
    name = 'acls_nitro',
    label = 'A-Class Nitrous',
    weight = 2000,
    type = 'item',
    image = 'acls_nitro.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A-Class Nitrous'
},

-- A+ Class Items
apluscls_wheel = {
    name = 'apluscls_wheel',
    label = 'A+ Class Wheel',
    weight = 1000,
    type = 'item',
    image = 'apluscls_wheel.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A+ Class Wheel'
},
apluscls_engine = {
    name = 'apluscls_engine',
    label = 'A+ Class Engine',
    weight = 3000,
    type = 'item',
    image = 'apluscls_engine.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A+ Class Engine'
},
apluscls_turbo = {
    name = 'apluscls_turbo',
    label = 'A+ Class Turbo',
    weight = 1500,
    type = 'item',
    image = 'apluscls_turbo.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A+ Class Turbo'
},
apluscls_nitro = {
    name = 'apluscls_nitro',
    label = 'A+ Class Nitrous',
    weight = 2000,
    type = 'item',
    image = 'apluscls_nitro.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A+ Class Nitrous'
},

-- S-Class Items
scls_wheel = {
    name = 'scls_wheel',
    label = 'S-Class Wheel',
    weight = 1000,
    type = 'item',
    image = 'scls_wheel.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'S-Class Wheel'
},
scls_engine = {
    name = 'scls_engine',
    label = 'S-Class Engine',
    weight = 3000,
    type = 'item',
    image = 'scls_engine.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'S-Class Engine'
},
scls_turbo = {
    name = 'scls_turbo',
    label = 'S-Class Turbo',
    weight = 1500,
    type = 'item',
    image = 'scls_turbo.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'S-Class Turbo'
},
scls_nitro = {
    name = 'scls_nitro',
    label = 'S-Class Nitrous',
    weight = 2000,
    type = 'item',
    image = 'scls_nitro.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'S-Class Nitrous'
},

-- carplay
carplay_nnclass= {
    name = 'carplay_nnclass',
    label = 'Car Play',
    weight = 2000,
    type = 'item',
    image = 'carplay_nnclass.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Car Play'
},

Discord Logs

Check config.lua and change

J0.DiscordWebHook
GitHub - Haaasib/j0-minigame: Prodigy Minigame V2GitHub
Bolt Minigame Export [Standalone]Lith Studios - FiveM Scripts Store
Releases · overextended/ox_libGitHub
Logo
Logo
Logo