I'm creating a Gym System using cw-rep as the stat / level process. However, I don't want to use DefaultLevels.
-- Gym Skills
strength = {
icon = 'fas fa-dumbbell',
label = 'Strength',
messages = {
{ notify = true, level = 10, message = "You're starting to feel stronger" },
{ notify = true, level = 25, message = "Your muscles are growing noticeably" },
{ notify = true, level = 50, message = "You're becoming quite strong" },
{ notify = true, level = 75, message = "You're now a powerhouse" },
{ notify = true, level = 100, message = "You've reached peak physical strength!" },
},
skillLevels = {
{ title = "Novice", from = 0, to = 5 }, -- 1 workout
{ title = "Beginner", from = 6, to = 10 }, -- 1 workout
{ title = "Amateur", from = 11, to = 15 }, -- 1 workout
{ title = "Intermediate", from = 16, to = 20 }, -- 1 workout
{ title = "Advanced", from = 21, to = 25 }, -- 1 workout
{ title = "Expert", from = 26, to = 50 }, -- 1.2-2 workouts
{ title = "Master", from = 51, to = 75 }, -- 2.2-4 workouts
{ title = "Elite", from = 76, to = 95 }, -- 4.2-5 workouts
{ title = "Legend", from = 96, to = 100 } -- 5-10 workouts
}
},```
I want the thresholds to be in the variable of level 100 is max, but i want to balance out the experience gains so that it isn't just 1:1 leveling. Any suggestions on how to get this to work ?
due to it being meant to be backward compatible.