πŸ› οΈINSTALLATION

  1. Download the latest release from Tebex Store

  2. Extract the janiel-tugtrader folder to your resources directory

  3. Add ensure janiel-tugtrader to your server.cfg

  4. Choose your inventory system in config.lua:

    Config.Inventory = 'qb' -- or 'ox' for ox_inventory
  5. Add the required items to your inventory system

For QB-Inventory

Add to qb-core/shared/items.lua:

['suspicious_package'] = {
    name = 'suspicious_package',
    label = 'Suspicious Package',
    weight = 1000,
    type = 'item',
    image = 'suspicious_package.png',
    unique = false,
    useable = false,
    shouldClose = false,
    combinable = nil,
    description = 'A suspicious looking package...'
},

For ox_inventory

Add to ox_inventory/data/items.lua:

If you are using the latest ps-dispatch you can skip this step.

PS-Dispatch Integration

  1. Add to client/alerts.lua:

  1. Add to config.lua:

Last updated