How do I retrieve a skill value from Lokai's skills system? For example, with stock UO skills I could reference them as follows:

Skill skill = defender.Skills[SkillName.Lumberjacking];

if (defender.Weapon is BaseAxe && Utility.Random(120) <= ((int)(skill.Value)))...

A lot of Lokai's skills work by calling on a "public static SuccessRating CheckLokaiSkill..." method in LokaiSkillUtilities and computing min and max parameters. In this method is an expression that calls a skill value "double value = lokaiSkill.Value;" I don't know how to retrieve a specific Lokai skill value and implement it like the lumberjack expression above. Thanks.
 
Back