👊Job Config

TASKS PRICE AND ITEMS CONFIG

Defines the payout, duration, and item rewards for each job. Do not change item names because the escape process depends on them.

Tasks = {
        poop = { -- Toilet cleaning job
            decraseTime = 5,
            money = 100,
            rewardItems = {
                { name = "prison_rustynail", label = "Rusty Nail", amount = 1 },
                { name = "prison_tornglove", label = "Torn Glove", amount = 1 }
            }
        },
        dish = { -- Dishwashing job
            decraseTime = 10,
            money = 200,
            rewardItems = {
                { name = "prison_soapresidue", label = "Soap Residue", amount = 1 },
                { name = "prison_plateshard", label = "Broken Plate Shard", amount = 1 }
            }
        },
        gym = { -- Gym training job
            decraseTime = 15,
            money = 300,
            rewardItems = {
                { name = "prison_barbellrod", label = "Bent Barbell Rod", amount = 1 },
                { name = "prison_sweatytowel", label = "Sweaty Towel", amount = 1 }
            }
        }
    },

CLEANING JOB CONFIG

Configuration for the toilet cleaning job, including models, tools, timing, and cleanup zones.


DISH JOB CONFIG

Configuration for the dishwashing job, including locations and props.


GYM JOB CONFIG

Configuration for the gym training job, including outfits, workout spots, and props.

Last updated