Job config

Main courier job config. (sh_job.lua)

Npc orders

You can enable or disable NPC orders, adjust NPC order amount, set the interval between new orders, and configure other related settings.

Config.Orders = {
    npcOrders = true,-- Enable or disable NPC orders
    npcOrderInterval = 600000, -- Time in milliseconds between new NPC order is created
    maxNpcOrders = 5, -- Maximum number of NPC orders at a time
    npcOrdersOnlyFromNonPlayerBusinesses = false, -- If true, NPC orders will only be created from restaurants that players don't managed
}

Timeout intervals

These values determine how long a player must wait before their order is automatically canceled due to delays in preparation or delivery.

Config.TimeToStartMaking = 300--Time in seconds does the restaurant works have to accept the order before it being cancelled and put back to the pool of available orders
Config.TimeToMake = 600--Time in seconds it takes for the restaurant worker to make the order before it gets cancelled
Config.TimeToFindCourier = 300--Time in seconds it takes for the driver to accept the delivery before it gets cancelled
Config.TimeToDeliver = 600--Time in seconds it takes for the driver to deliver the order before it gets cancelled

Food bag

You can change the food bag prop, adjust its offset on the player, and configure where it can be purchased and for what price.

Bags in vehicles

This option determines which vehicle classes allow the player to enter without placing the bag inside the vehicle first.

Delivery menu

These values determine how much each factor impacts the final delivery payout amount of the order.

NPC configuration

NPC customer name list.

NPC possible delivery locations.

Last updated