Salary Progression
This rewards long-term activity and dedication within specific job roles.
Config.SalaryProgression = {
police = {
[0] = { -- grade
base = 1000,
offdutySalary = 100,
progression = {
[5] = 10, -- 5 hours = 10% will increase salary by 10%
[10] = 15, -- 10 hours = 15% increase
[20] = 20 -- 20 hours = 20% increase
}
},
[1] = {
base = 1200,
offdutySalary = 100,
progression = {
[5] = 3,
[10] = 4,
[20] = 6
}
},
},
-- Add more jobs as needed
};Last updated