Delivery Options
Boosting Options Config (options.lua
)
options.lua
)This configuration defines the enabled activities and rewards per vehicle class. Options include vinscratch, chopshop, and delivery, with configurable reward percentages and Kcoin multipliers.
Example Config
Config.Options = {
["d"] = { vinscratch = {...}, chopshop = {...}, delivery = {...} },
["c"] = { vinscratch = {...}, chopshop = {...}, delivery = {...} },
["b"] = { vinscratch = {...}, chopshop = {...}, delivery = {...} },
["a"] = { vinscratch = {...}, chopshop = {...}, delivery = {...} },
["s"] = { vinscratch = {...}, chopshop = {...}, delivery = {...} }
}
Each class defines which activities are enabled and the reward scaling.
Options per Activity
1. Vinscratch
vinscratch = {
enabled = true,
reward = 30, -- percentage of class reward
kcoin = 25 -- percentage of kcoin reward
}
enabled – toggle vinscratch activity on/off.
reward – percentage of the total contract reward granted for completing vinscratch.
kcoin – percentage of kcoin awarded for this activity.
2. Chopshop
chopshop = {
enabled = true,
reward = 70, -- percentage of class reward
kcoin = 25 -- percentage of kcoin reward
}
enabled – toggle chopshop activity on/off.
reward – percentage of total contract reward if chopshop is completed.
kcoin – percentage of kcoin reward for chopshop activity.
3. Delivery
delivery = {
enabled = true,
reward = 100, -- percentage of class reward
kcoin = 25 -- percentage of kcoin reward
}
enabled – toggle delivery activity on/off.
reward – percentage of total contract reward if delivery is completed.
kcoin – percentage of kcoin reward for delivery activity.
Notes
Reward percentages allow you to split contract payouts between different activities.
You can disable activities per vehicle class to control difficulty or gameplay style.
Kcoin percentages are independent of reward percentages, letting you incentivize certain activities.
This config works in combination with Vehicle Classes, Missions, and Minigames to create fully custom contract flows.
Last updated