Configuration

Configuration for Script_JobFix System Resource

  • Config.Debug: Enables or disables debug mode (set to false).

  • Config.RewardType: Determines the reward type (item or money).

  • Config.RewardItem: Specifies the reward item players receive (set to "paid_receipt").

  • Config.RewardAmount: Amount of money players receive as a reward (set to 500).

  • Config.InventorySystem: Defines the inventory system used (set to "ox_inventory").

  • Config.JobTimeout: Job timeout duration in milliseconds (set to 1,800,000, equivalent to 30 minutes).

Config = {}

Config.Debug = false

Config.RewardType = "item" -- Options: "item", "money"
Config.RewardItem = "paid_receipt" -- The item players receive upon job completion
Config.RewardAmount = 500 -- Amount of money players receive for the job
Config.InventorySystem = "ox_inventory" -- Options: "ox_inventory" || not tested on "esx-inventory" but you can check it might work might be adding more inventory's too
Config.JobTimeout = 1800000  -- 30 min 

Last updated