Ultima Online Protocol :: Mobile Status (C#)
      using System;
      
      namespace Common
      {
          public enum MobileStatus
          {
              Normal = 0x00,
              Unknown = 0x01,
              CanAlterPaperdoll = 0x02,
              Poisoned = 0x04,
              GoldenHealth = 0x08,
              Unknown2 = 0x10,
              Unknown3 = 0x20,
              WarMode = 0x40,
              Hidden = 0x80
          }
      }
    
The values in the enumeration are flags used to represent a character's status.

The CanAlterPaperdoll flag, if enabled in an Open Paperdoll packet, allows the player receiving the packet to add and remove the target's clothing.