noted also that the stats for anyone over lvl 71 are not right also..
according to the char sheet. without aas the max stat is 330 so that would make the new getmaxstat read like so.
Code:
sint16 Client::GetMaxStat() const {
int level = GetLevel();
sint16 base = 0;
if (level < 61) {
base = 255;
}
else if (level < 71) {
base = 255 + 5 * (level - 60);
}
else {
/////////////ADDED///////////////////////////////////////////////
//added is for my notes its actually edited from 280 to 330
base = 330;
////////////END ADDED///////////////////////////////////////////
}
base += GetAA(aaPlanarPower) * 5;
//////////ADDED/////////////////////////////////////
base += GetAA(aaChaoticPotential) * 5;
////////END ADDED///////////////////////////////////
return(base);
}
this has been tested and works