Add Items Rewards

After you add the new jobs or items to a job, you need to add the reward to it. To do this, go to config.lua and search for:

Config.ItemRewards = {
    lettuce = 20,
    potato = 20,
    onion = 20,
    chickensteak = 50,
    hamburger = 50,
    hamburgerbun1 = 15,
    hamburgerbun2 = 15,
    cheese = 50,
    tomato = 20,
    tortilla = 30
}

Add the item and reward to this list, for example:

Config.ItemRewards = {
    lettuce = 20,
    potato = 20,
    onion = 20,
    chickensteak = 50,
    hamburger = 50,
    hamburgerbun1 = 15,
    hamburgerbun2 = 15,
    cheese = 50,
    tomato = 20,
    tortilla = 30,
    -- new item
    fixkit = 50
}

Last updated