Ultima Online Protocol :: Skill/Status Locks (C#)
      using System;
      
      namespace Common
      {
          public enum Lock
          {
              Gain = 0x00,
              Lose = 0x01,
              Lock = 0x02
          }
      }
    
The values in the enumeration represent the lock status of a skill or stat.