How to configure skill point gain
Navigate to lua/wos/advswl/config/skills/sv_skillwos.lua
Find the values "wOS.ALCS.Config.Skills.LevelsPerSkillPoint", and "wOS.ALCS.Config.Skills.SkillPointPerLevel"
- "wOS.ALCS.Config.Skills.LevelsPerSkillPoint" determines how many levels a player needs to gain before getting skill points
- "wOS.ALCS.Config.Skills.SkillPointPerLevel" determines how many skill points a player receives when they gain enough levels to earn skill points
Example
Sets the amount of levels required to gain skill points to 1, and gives the player 2 skill points per 1 level
wOS.ALCS.Config.Skills.LevelsPerSkillPoint = 1
wOS.ALCS.Config.Skills.SkillPointPerLevel = 2