FAQ
❓How do I disable a job?
return {
-- # Other things...
-- Set to false to disable this job completely
active = false,
-- # Other things...
}❓ How do I add a cooldown to a job?
return {
-- # Other things...
-- Job cooldown time in seconds
cooldown = 60 * 5, -- 5 minutes
-- # Other things...
}❓ I don't want jobs like weed, cocaine, or meth to be endless. How do players complete or finish these tasks?
Last updated