Items

Ox Inventory (ox_inventory/data/items.lua)

['gps_hacking_device'] = {
    label = 'GPS Hacking Device',
    weight = 1000,
    client = { image = 'gps_hacking_device.png' },
},

['boosting_tablet'] = {
    label = 'Boosting Tablet',
    weight = 1000,
    client = { image = 'boosting_tablet.png' },
},
  • gps_hacking_device: Used for cracking vehicle GPS trackers.

  • boosting_tablet: Required to access and manage boosting contracts.


QB-Core (qb-core/shared/items.lua)

gps_hacking_device = {
    name = 'gps_hacking_device',
    label = 'GPS Hacking Device',
    weight = 1000,
    type = 'item',
    image = 'gps_hacking_device.png',
    unique = true,
    useable = true,
    shouldClose = true,
    description = 'A device for cracking the GPS of cars',
},

boosting_tablet = {
    name = 'boosting_tablet',
    label = 'Boosting Tablet',
    weight = 1000,
    type = 'item',
    image = 'boosting_tablet.png',
    unique = true,
    useable = true,
    shouldClose = true,
    description = 'A tablet used for boosting operations',
},
  • gps_hacking_device: A unique, useable tool required to disable GPS tracking devices.

  • boosting_tablet: A unique tablet that unlocks access to boosting jobs and contract management.

Last updated