Hi, i just wanna to know what is the right math for the mentor extra BP gain!
My Math is :
I don't know if is this right! ^_^
also if a prince got mentor from a king, should he gain 1 BP or 2 ?! Or nothing? ^_^ Thanks!
My Math is :
Code:
public uint CalcExtraBP(Player mentor)//mentor bp
{
if (mentor.NMBattlePower < client.NMBattlePower) return 0;
uint bp = (uint)((mentor.NMBattlePower - client.NMBattlePower) / 3.3F);
if (client.Level >= 125) bp = (uint)((bp * (135 - client.Level)) / 10);
if (bp < 0) bp = 0;
return bp;
}
also if a prince got mentor from a king, should he gain 1 BP or 2 ?! Or nothing? ^_^ Thanks!