Aetherius Shadowblade
Member
Where would i find the numbers on what my character caps are for stats, skills, etc.?
[CommandProperty(AccessLevel.GameMaster)]
public override int Str
{
get
{
if (Core.ML && IsPlayer())
{
return Math.Min(base.Str, 150);
}
return base.Str;
}
set { base.Str = value; }
}
m_StatCap = 225;
public Skills(Mobile owner)
{
m_Owner = owner;
m_Cap = 7000;
var info = SkillInfo.Table;
m_Skills = new Skill[info.Length];
}
e.Mobile.SkillsCap = 7000;
Wow so many places to affect the same setting seems a bit... of a pain in the ass. Please tell me there are reason for all of the different spots, or are they just leftovers from a mod or moving things around?
We use essential cookies to make this site work, and optional cookies to enhance your experience.