public static bool CanUseContract(Mobile from)
 {
     if (from is PlayerMobile && from.Skills[HuntBodUtility.GetBestFightingSkill(from)].Base >= SkillNeeded)
     {
         return(true);
     }
     return(false);
 }