Installation

  1. Drag and drop the folder to your resources directory.

  2. Add the script to your server.cfg:

ensure yourscriptname

  1. Set your framework in config.lua:

-- 'qb' for qb-core and qbox & 'esx' for esx framework

Config.Framework = 'qb'
  1. Import the SQL file included for reputation tracking.

CREATE TABLE IF NOT EXISTS cargo_repo (
    citizenid VARCHAR(50) PRIMARY KEY,
    repo INT DEFAULT 0
);

Dependencies

Notes

  • Make sure your spawn zones for truck/trailer are clear to prevent failed spawns.

  • Reputation starts at 0 and increases with each successful job.

  • You can customize job data inside config.lua.

Last updated