IAMKEY Initiate Feb 9, 2016 #1 Hello again, Where do I go to remove or raise the skill points a player can have?
Voxpire Vita-Nex Administrator Feb 9, 2016 #2 To increase the total cap, you can set Mobile.SkillsCap or Mobile.Skills.Cap. You might want to change this in CharacterCreation, but you can do it anywhere really (in a deed, skill ball, etc) Example: CharacterCreation.cs C#: newChar.Skills.Cap = 7200; 7200 is the integral value for 720.0 total cap, so if you want to set the cap to 1000.0, you'd assign 10000
To increase the total cap, you can set Mobile.SkillsCap or Mobile.Skills.Cap. You might want to change this in CharacterCreation, but you can do it anywhere really (in a deed, skill ball, etc) Example: CharacterCreation.cs C#: newChar.Skills.Cap = 7200; 7200 is the integral value for 720.0 total cap, so if you want to set the cap to 1000.0, you'd assign 10000
Norman Lancaster Member Feb 10, 2016 #3 You'll also need to modify Scripts/Services/VeteranRewards/RewardSystem.cs method EventSink_Login . At login this will adjust a character's skill cap according to the vet reward system.
You'll also need to modify Scripts/Services/VeteranRewards/RewardSystem.cs method EventSink_Login . At login this will adjust a character's skill cap according to the vet reward system.