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.