Hey guys,

So before i was running on older releases of ServUO and could find and change gain rates very easy.
Idk if I am just this blind or if it really changed that much, but cant find the line to change gain rates.

Want to increase gain rate by about 4x the normal speed. Not gain amount, just gain rate.

Thank you in advanced !
 
Skillcheck.cs its somewhere just below where it lists the skills. Its usually set to 1.00 as native gain rate, just change it to 4 and you should be set
 
ok so i didnt have that, but it helped anyways !

on latest ServUO its in SkillCheck.cs around line 246

private static double GetGainChance(Mobile from, Skill skill, double chance, bool success)
{
var gc = (double)(from.Skills.Cap - from.Skills.Total) / from.Skills.Cap;

gc += (skill.Cap - skill.Base) / skill.Cap;
gc /= 4;

gc += (4.0 - chance) * (success ? 0.5 : (Core.AOS ? 0.0 : 0.2));
gc /= 4; ↑↑↑
Post automatically merged:

Thank you for your help !
 
Back