β Add New Job's
In the yoda reputation system, it is possible to add the jobs you want in the tabs of the UI you want (if you use YODA UI). To do this, you must follow the steps below to implement in config_jobs.lua.
Configjobs = {}
Configjobs.Jobs = {
["garbage"] = { -- label
name = "Garbage GO", -- name
tab = "Work Zone", -- tab name
icon_tab = "fa-trash", -- tab icon
icon_job = "fa-trash", -- job icon
max_points = 5000, -- max of points
level_thresholds = { -- levels and their points
["1"] = 1,
["2"] = 200,
["3"] = 600,
["4"] = 1000,
["5"] = 1500,
["6"] = 2100,
["7"] = 2800,
["8"] = 3600,
["9"] = 4500,
["10"] = 5000
},
rewards = { -- rewards per level
["1"] = { ["item"] = "scrap", ["quantity"] = 1 },
["5"] = { ["money"] = 500 },
["10"] = { ["item"] = "gold_bar", ["quantity"] = 1 }
}
},
["pizza"] = {
name = "Pizza & Pl",
tab = "Food",
icon_tab = "fa-pizza-slice",
icon_job = 'fa-pizza-slice',
max_points = 5000,
level_thresholds = {
["1"] = 1,
["2"] = 150,
["3"] = 800,
["4"] = 1300,
["5"] = 2000,
["6"] = 2800,
["7"] = 3700,
["8"] = 4700,
["9"] = 4900,
["10"] = 5000
},
rewards = {
["1"] = { ["item"] = "scrap", ["quantity"] = 1 },
["5"] = { ["money"] = 500 },
["10"] = { ["item"] = "gold_bar", ["quantity"] = 1 }
}
},
}
Last updated