namespace ACE.Entity.Enum
{
///
/// These were tested against the last available client version: 0.0.11.6096
/// The WeenieError identifies the specific message to be displayed in the chat window or top of the UI.
/// Used with F7B0 028A: Game Event -> Display an error message in the chat window if necessary.
///
/// WeenieError and WeenieErrorWithString are actually a single enum in the client.
/// The enum is used in handling 0x028A and 0x028B messages and also some other messages like UseDone.
/// We split the enum up into 2 enums because each function uses only a specific set of the enum values.
/// There are cases where the value was used by multiple messages e.g. 0x0036 ActionCancelled.
///
/// Client error messages:
/// http://ac.yotesfan.com/client/errors.php
///
public enum WeenieError
{
///
/// No error (success)
///
None = 0x0000,
NoMem = 0x0001,
BadParam = 0x0002,
DivZero = 0x0003,
SegV = 0x0004,
Unimplemented = 0x0005,
UnknownMessageType = 0x0006,
NoAnimationTable = 0x0007,
NoPhysicsObject = 0x0008,
NoBookieObject = 0x0009,
NoWslObject = 0x000A,
NoMotionInterpreter = 0x000B,
UnhandledSwitch = 0x000C,
DefaultConstructorCalled = 0x000D,
InvalidCombatManeuver = 0x000E,
BadCast = 0x000F,
MissingQuality = 0x0010,
// Skip 1
MissingDatabaseObject = 0x0012,
NoCallbackSet = 0x0013,
CorruptQuality = 0x0014,
BadContext = 0x0015,
NoEphseqManager = 0x0016,
///
/// You failed to go to non-combat mode.
///
BadMovementEvent = 0x0017,
CannotCreateNewObject = 0x0018,
NoControllerObject = 0x0019,
CannotSendEvent = 0x001A,
PhysicsCantTransition = 0x001B,
PhysicsMaxDistanceExceeded = 0x001C,
///
/// You're too busy!
///
YoureTooBusy = 0x001D,
CannotSendMessage = 0x001F,
///
/// You must control both objects!
///
IllegalInventoryTransaction = 0x0020,
ExternalWeenieObject = 0x0021,
InternalWeenieObject = 0x0022,
///
/// Unable to move to object!
///
MotionFailure = 0x0023,
///
/// You can't jump while in the air
///
YouCantJumpWhileInTheAir = 0x0024,
InqCylSphereFailure = 0x0025,
///
/// That is not a valid command.
///
ThatIsNotAValidCommand = 0x0026,
CarryingItem = 0x0027,
///
/// The item is under someone else's control!
///
Frozen = 0x0028,
///
/// You cannot pick that up!
///
Stuck = 0x0029,
///
/// You are too encumbered to carry that!
///
YouAreTooEncumbered = 0x002A,
BadContain = 0x002C,
BadParent = 0x002D,
BadDrop = 0x002E,
BadRelease = 0x002F,
MsgBadMsg = 0x0030,
MsgUnpackFailed = 0x0031,
MsgNoMsg = 0x0032,
MsgUnderflow = 0x0033,
MsgOverflow = 0x0034,
MsgCallbackFailed = 0x0035,
///
/// Action cancelled!
///
ActionCancelled = 0x0036,
///
/// Unable to move to object!
///
ObjectGone = 0x0037,
///
/// Unable to move to object!
///
NoObject = 0x0038,
///
/// Unable to move to object!
///
CantGetThere = 0x0039,
///
/// You can't do that... you're dead! or You can't do that... its dead!
///
Dead = 0x003A,
ILeftTheWorld = 0x003B,
ITeleported = 0x003C,
///
/// You charged too far!
///
YouChargedTooFar = 0x003D,
///
/// You are too tired to do that!
///
YouAreTooTiredToDoThat = 0x003E,
// Client side only
CantCrouchInCombat = 0x003F,
// Client side only
CantSitInCombat = 0x0040,
// Client side only
CantLieDownInCombat = 0x0041,
// Client side only
CantChatEmoteInCombat = 0x0042,
NoMtableData = 0x0043,
// Client side only
CantChatEmoteNotStanding = 0x0044,
TooManyActions = 0x0045,
Hidden = 0x0046,
GeneralMovementFailure = 0x0047,
///
/// You can't jump from this position
///
YouCantJumpFromThisPosition = 0x0048,
// Client side only
CantJumpLoadedDown = 0x0049,
///
/// Ack! You killed yourself!
///
YouKilledYourself = 0x004A,
MsgResponseFailure = 0x004B,
ObjectIsStatic = 0x004C,
///
/// Invalid PK Status!
///
InvalidPkStatus = 0x004D,
InvalidXpAmount = 0x03E9,
InvalidPpCalculation = 0x03EA,
InvalidCpCalculation = 0x03EB,
UnhandledStatAnswer = 0x03EC,
HeartAttack = 0x03ED,
///
/// The container is closed!
///
TheContainerIsClosed = 0x03EE,
InvalidInventoryLocation = 0x03F0,
///
/// You failed to go to non-combat mode.
///
ChangeCombatModeFailure = 0x03F1,
FullInventoryLocation = 0x03F2,
ConflictingInventoryLocation = 0x03F3,
ItemNotPending = 0x03F4,
BeWieldedFailure = 0x03F5,
BeDroppedFailure = 0x03F6,
///
/// You are too fatigued to attack!
///
YouAreTooFatiguedToAttack = 0x03F7,
///
/// You are out of ammunition!
///
YouAreOutOfAmmunition = 0x03F8,
///
/// Your missile attack misfired!
///
YourAttackMisfired = 0x03F9,
///
/// You've attempted an impossible spell path!
///
YouveAttemptedAnImpossibleSpellPath = 0x03FA,
MagicIncompleteAnimList = 0x03FB,
MagicInvalidSpellType = 0x03FC,
MagicInqPositionAndVelocityFailure = 0x03FD,
///
/// You don't know that spell!
///
YouDontKnowThatSpell = 0x03FE,
///
/// Incorrect target type
///
IncorrectTargetType = 0x03FF,
///
/// You don't have all the components for this spell.
///
YouDontHaveAllTheComponents = 0x0400,
///
/// You don't have enough Mana to cast this spell.
///
YouDontHaveEnoughManaToCast = 0x0401,
///
/// Your spell fizzled.
///
YourSpellFizzled = 0x0402,
///
/// Your spell's target is missing!
///
YourSpellTargetIsMissing = 0x0403,
///
/// Your projectile spell mislaunched!
///
YourProjectileSpellMislaunched = 0x0404,
MagicSpellbookAddSpellFailure = 0x0405,
MagicTargetOutOfRange = 0x0406,
///
/// Your spell cannot be cast outside
///
YourSpellCannotBeCastOutside = 0x0407,
///
/// Your spell cannot be cast inside
///
YourSpellCannotBeCastInside = 0x0408,
MagicGeneralFailure = 0x0409,
///
/// You are unprepared to cast a spell
///
YouAreUnpreparedToCastASpell = 0x040A,
///
/// You've already sworn your Allegiance
///
YouveAlreadySwornAllegiance = 0x040B,
///
/// You don't have enough experience available to swear Allegiance
///
CantSwearAllegianceInsufficientXp = 0x040C,
AllegianceIgnoringRequests = 0x040D,
AllegianceSquelched = 0x040E,
AllegianceMaxDistanceExceeded = 0x040F,
AllegianceIllegalLevel = 0x0410,
AllegianceBadCreation = 0x0411,
AllegiancePatronBusy = 0x0412,
///
/// You are not in an allegiance!
///
YouAreNotInAllegiance = 0x0414,
AllegianceRemoveHierarchyFailure = 0x0415,
FellowshipIgnoringRequests = 0x0417,
FellowshipSquelched = 0x0418,
FellowshipMaxDistanceExceeded = 0x0419,
FellowshipMember = 0x041A,
FellowshipIllegalLevel = 0x041B,
FellowshipRecruitBusy = 0x041C,
///
/// You must be the leader of a Fellowship
///
YouMustBeLeaderOfFellowship = 0x041D,
///
/// Your Fellowship is full
///
YourFellowshipIsFull = 0x041E,
///
/// That Fellowship name is not permitted
///
FellowshipNameIsNotPermitted = 0x041F,
LevelTooLow = 0x0420,
LevelTooHigh = 0x0421,
///
/// That channel doesn't exist.
///
ThatChannelDoesntExist = 0x0422,
///
/// You can't use that channel.
///
YouCantUseThatChannel = 0x0423,
///
/// You're already on that channel.
///
YouAreAlreadyOnThatChannel = 0x0424,
///
/// You're not currently on that channel.
///
YouAreNotOnThatChannel = 0x0425,
///
/// _ can't be dropped
///
AttunedItem = 0x0426,
///
/// You cannot merge different stacks!
///
YouCannotMergeDifferentStacks = 0x0427,
///
/// You cannot merge enchanted items!
///
YouCannotMergeEnchantedItems = 0x0428,
///
/// You must control at least one stack!
///
YouMustControlAtLeastOneStack = 0x0429,
CurrentlyAttacking = 0x042A,
MissileAttackNotOk = 0x042B,
TargetNotAcquired = 0x042C,
ImpossibleShot = 0x042D,
BadWeaponSkill = 0x042E,
UnwieldFailure = 0x042F,
LaunchFailure = 0x0430,
ReloadFailure = 0x0431,
///
/// Your craft attempt fails.
///
UnableToMakeCraftReq = 0x0432,
///
/// Your craft attempt fails.
///
CraftAnimationFailed = 0x0433,
///
/// Given that number of items, you cannot craft anything.
///
YouCantCraftWithThatNumberOfItems = 0x0434,
///
/// Your craft attempt fails.
///
CraftGeneralErrorUiMsg = 0x0435,
CraftGeneralErrorNoUiMsg = 0x0436,
///
/// Either you or one of the items involved does not pass the requirements for this craft interaction.
///
YouDoNotPassCraftingRequirements = 0x0437,
///
/// You do not have all the neccessary items.
///
YouDoNotHaveAllTheNecessaryItems = 0x0438,
///
/// Not all the items are avaliable.
///
NotAllTheItemsAreAvailable = 0x0439,
///
/// You must be at rest in peace mode to do trade skills.
///
YouMustBeInPeaceModeToTrade = 0x043A,
///
/// You are not trained in that trade skill.
///
YouAreNotTrainedInThatTradeSkill = 0x043B,
///
/// Your hands must be free.
///
YourHandsMustBeFree = 0x043C,
///
/// You cannot link to that portal!
///
YouCannotLinkToThatPortal = 0x043D,
///
/// You have solved this quest too recently!
///
YouHaveSolvedThisQuestTooRecently = 0x043E,
///
/// You have solved this quest too many times!
///
YouHaveSolvedThisQuestTooManyTimes = 0x043F,
QuestUnknown = 0x0440,
QuestTableCorrupt = 0x0441,
QuestBad = 0x0442,
QuestDuplicate = 0x0443,
QuestUnsolved = 0x0444,
///
/// This item requires you to complete a specific quest before you can pick it up!
///
ItemRequiresQuestToBePickedUp = 0x0445,
QuestSolvedTooLongAgo = 0x0446,
TradeIgnoringRequests = 0x044C,
TradeSquelched = 0x044D,
TradeMaxDistanceExceeded = 0x044E,
TradeAlreadyTrading = 0x044F,
TradeBusy = 0x0450,
TradeClosed = 0x0451,
TradeExpired = 0x0452,
TradeItemBeingTraded = 0x0453,
TradeNonEmptyContainer = 0x0454,
TradeNonCombatMode = 0x0455,
TradeIncomplete = 0x0456,
TradeStampMismatch = 0x0457,
TradeUnopened = 0x0458,
TradeEmpty = 0x0459,
TradeAlreadyAccepted = 0x045A,
TradeOutOfSync = 0x045B,
///
/// Player killers may not interact with that portal!
///
PKsMayNotUsePortal = 0x045C,
///
/// Non-player killers may not interact with that portal!
///
NonPKsMayNotUsePortal = 0x045D,
///
/// You do not own a house!
///
HouseAbandoned = 0x045E,
///
/// You do not own a house!
///
HouseEvicted = 0x045F,
HouseAlreadyOwned = 0x0460,
HouseBuyFailed = 0x0461,
HouseRentFailed = 0x0462,
Hooked = 0x0463,
MagicInvalidPosition = 0x0465,
///
/// You must purchase Asheron's Call: Dark Majesty to interact with that portal.
///
YouMustHaveDarkMajestyToUsePortal = 0x0466,
InvalidAmmoType = 0x0467,
SkillTooLow = 0x0468,
///
/// You have used all the hooks you are allowed to use for this house.
///
YouHaveUsedAllTheHooks = 0x0469,
///
/// _ doesn't know what to do with that.
///
TradeAiDoesntWant = 0x046A,
HookHouseNotOwned = 0x046B,
///
/// You must complete a quest to interact with that portal.
///
YouMustCompleteQuestToUsePortal = 0x0474,
HouseNoAllegiance = 0x047E,
///
/// You must own a house to use this command.
///
YouMustOwnHouseToUseCommand = 0x047F,
///
/// Your monarch does not own a mansion or a villa!
///
YourMonarchDoesNotOwnAMansionOrVilla = 0x0480,
///
/// Your monarch does not own a mansion or a villa!
///
YourMonarchsHouseIsNotAMansionOrVilla = 0x0481,
///
/// Your monarch has closed the mansion to the Allegiance.
///
YourMonarchHasClosedTheMansion = 0x0482,
///
/// You must be a monarch to purchase this dwelling.
///
YouMustBeMonarchToPurchaseDwelling = 0x048A,
// Perhaps 30 seconds like fellowship timeout?
AllegianceTimeout = 0x048D,
///
/// Your offer of Allegiance has been ignored.
///
YourOfferOfAllegianceWasIgnored = 0x048E,
///
/// You are already involved in something!
///
ConfirmationInProgress = 0x048F,
///
/// You must be a monarch to use this command.
///
YouMustBeAMonarchToUseCommand = 0x0490,
///
/// You must specify a character to boot. (From allegiance)
///
YouMustSpecifyCharacterToBoot = 0x0491,
///
/// You can't boot yourself! (From allegiance)
///
YouCantBootYourself = 0x0492,
///
/// That character does not exist.
///
ThatCharacterDoesNotExist = 0x0493,
///
/// That person is not a member of your Allegiance!
///
ThatPersonIsNotInYourAllegiance = 0x0494,
///
/// No patron from which to break!
///
CantBreakFromPatronNotInAllegiance = 0x0495,
///
/// Your Allegiance has been dissolved!
///
YourAllegianceHasBeenDissolved = 0x0496,
///
/// Your patron's Allegiance to you has been broken!
///
YourPatronsAllegianceHasBeenBroken = 0x0497,
///
/// You have moved too far!
///
YouHaveMovedTooFar = 0x0498,
///
/// That is not a valid destination!
///
TeleToInvalidPosition = 0x0499,
///
/// You must purchase Asheron's Call -- Dark Majesty to use this function.
///
MustHaveDarkMajestyToUse = 0x049A,
///
/// You fail to link with the lifestone!
///
YouFailToLinkWithLifestone = 0x049B,
///
/// You wandered too far to link with the lifestone!
///
YouWanderedTooFarToLinkWithLifestone = 0x049C,
///
/// You successfully link with the lifestone!
///
YouSuccessfullyLinkWithLifestone = 0x049D,
///
/// You must have linked with a lifestone in order to recall to it!
///
YouMustLinkToLifestoneToRecall = 0x049E,
///
/// You fail to recall to the lifestone!
///
YouFailToRecallToLifestone = 0x049F,
///
/// You fail to link with the portal!
///
YouFailToLinkWithPortal = 0x04A0,
///
/// You successfully link with the portal!
///
YouSuccessfullyLinkWithPortal = 0x04A1,
///
/// You fail to recall to the portal!
///
YouFailToRecallToPortal = 0x04A2,
///
/// You must have linked with a portal in order to recall to it!
///
YouMustLinkToPortalToRecall = 0x04A3,
///
/// You fail to summon the portal!
///
YouFailToSummonPortal = 0x04A4,
///
/// You must have linked with a portal in order to summon it!
///
YouMustLinkToPortalToSummonIt = 0x04A5,
///
/// You fail to teleport!
///
YouFailToTeleport = 0x04A6,
///
/// You have been teleported too recently!
///
YouHaveBeenTeleportedTooRecently = 0x04A7,
///
/// You must be an Advocate to interact with that portal.
///
YouMustBeAnAdvocateToUsePortal = 0x04A8,
PortalAisNotAllowed = 0x04A9,
///
/// Players may not interact with that portal.
///
PlayersMayNotUsePortal = 0x04AA,
///
/// You are not powerful enough to interact with that portal!
///
YouAreNotPowerfulEnoughToUsePortal = 0x04AB,
///
/// You are too powerful to interact with that portal!
///
YouAreTooPowerfulToUsePortal = 0x04AC,
///
/// You cannot recall to that portal!
///
YouCannotRecallPortal = 0x04AD,
///
/// You cannot summon that portal!
///
YouCannotSummonPortal = 0x04AE,
///
/// The lock is already unlocked.
///
LockAlreadyUnlocked = 0x04AF,
///
/// You can't lock or unlock that!
///
YouCannotLockOrUnlockThat = 0x04B0,
///
/// You can't lock or unlock what is open!
///
YouCannotLockWhatIsOpen = 0x04B1,
///
/// The key doesn't fit this lock.
///
KeyDoesntFitThisLock = 0x04B2,
///
/// The lock has been used too recently.
///
LockUsedTooRecently = 0x04B3,
///
/// You aren't trained in lockpicking!
///
YouArentTrainedInLockpicking = 0x04B4,
///
/// You must specify a character to query.
///
AllegianceInfoEmptyName = 0x04B5,
///
/// Please use the allegiance panel to view your own information.
///
AllegianceInfoSelf = 0x04B6,
///
/// You have used that command too recently.
///
AllegianceInfoTooRecent = 0x04B7,
AbuseNoSuchCharacter = 0x04B8,
AbuseReportedSelf = 0x04B9,
AbuseComplaintHandled = 0x04BA,
///
/// You do not own that salvage tool!
///
YouDoNotOwnThatSalvageTool = 0x04BD,
///
/// You do not own that item!
///
YouDoNotOwnThatItem = 0x04BE,
///
/// The material cannot be created.
///
MaterialCannotBeCreated = 0x04C1,
///
/// The list of items you are attempting to salvage is invalid.
///
ItemsAttemptingToSalvageIsInvalid = 0x04C2,
///
/// You cannot salvage items that you are trading!
///
YouCannotSalvageItemsInTrading = 0x04C3,
///
/// You must be a guest in this house to interact with that portal.
///
YouMustBeHouseGuestToUsePortal = 0x04C4,
///
/// Your Allegiance Rank is too low to use that item's magic.
///
YourAllegianceRankIsTooLowToUseMagic = 0x04C5,
///
/// Your Arcane Lore skill is too low to use that item's magic.
///
YourArcaneLoreIsTooLowToUseMagic = 0x04C7,
///
/// That item doesn't have enough Mana.
///
ItemDoesntHaveEnoughMana = 0x04C8,
///
/// You have been involved in a player killer battle too recently to do that!
///
YouHaveBeenInPKBattleTooRecently = 0x04CC,
TradeAiRefuseEmote = 0x04CD,
///
/// You have failed to alter your skill.
///
YouFailToAlterSkill = 0x04D0,
FellowshipDeclined = 0x04DB,
///
/// Appears to be sent to a recruiter 30 seconds after the initial recruit message when the recruitee doesn't respond.
///
FellowshipTimeout = 0x04DC,
///
/// You have failed to alter your attributes.
///
YouHaveFailedToAlterAttributes = 0x04DD,
///
/// You are currently wielding items which require a certain level of skill. Your attributes cannot be transferred while you are wielding these items. Please remove these items and try again.
///
CannotTransferAttributesWhileWieldingItem = 0x04E0,
///
/// You have succeeded in transferring your attributes!
///
YouHaveSucceededTransferringAttributes = 0x04E1,
///
/// This hook is a duplicated housing object. You may not add items to a duplicated housing object. Please empty the hook and allow it to reset.
///
HookIsDuplicated = 0x04E2,
///
/// That item is of the wrong type to be placed on this hook.
///
ItemIsWrongTypeForHook = 0x04E3,
///
/// This chest is a duplicated housing object. You may not add items to a duplicated housing object. Please empty everything -- including backpacks -- out of the chest and allow the chest to reset.
///
HousingChestIsDuplicated = 0x04E4,
///
/// This hook was a duplicated housing object. Since it is now empty, it will be deleted momentarily. Once it is gone, it is safe to use the other, non-duplicated hook that is here.
///
HookWillBeDeleted = 0x04E5,
///
/// This chest was a duplicated housing object. Since it is now empty, it will be deleted momentarily. Once it is gone, it is safe to use the other, non-duplicated chest that is here.
///
HousingChestWillBeDeleted = 0x04E6,
///
/// You cannot swear allegiance to anyone because you own a monarch-only house. Please abandon your house and try again.
///
CannotSwearAllegianceWhileOwningMansion = 0x04E7,
///
/// You can't do that while in the air!
///
YouCantDoThatWhileInTheAir = 0x04EB,
///
/// You cannot modify your player killer status while you are recovering from a PK death.
///
CannotChangePKStatusWhileRecovering = 0x04EC,
///
/// Advocates may not change their player killer status!
///
AdvocatesCannotChangePKStatus = 0x04ED,
///
/// Your level is too low to change your player killer status with this object.
///
LevelTooLowToChangePKStatusWithObject = 0x04EE,
///
/// Your level is too high to change your player killer status with this object.
///
LevelTooHighToChangePKStatusWithObject = 0x04EF,
///
/// You feel a harsh dissonance, and you sense that an act of killing you have committed recently is interfering with the conversion.
///
YouFeelAHarshDissonance = 0x04F0,
///
/// Bael'Zharon's power flows through you again. You are once more a player killer.
///
YouArePKAgain = 0x04F1,
///
/// Bael'Zharon has granted you respite after your moment of weakness. You are temporarily no longer a player killer.
///
YouAreTemporarilyNoLongerPK = 0x04F2,
///
/// Lite Player Killers may not interact with that portal!
///
PKLiteMayNotUsePortal = 0x04F3,
///
/// You aren't trained in healing!
///
YouArentTrainedInHealing = 0x04FC,
///
/// You don't own that healing kit!
///
YouDontOwnThatHealingKit = 0x04FD,
///
/// You can't heal that!
///
YouCantHealThat = 0x04FE,
///
/// You aren't ready to heal!
///
YouArentReadyToHeal = 0x0500,
///
/// You can only use Healing Kits on player characters.
///
YouCanOnlyHealPlayers = 0x0501,
///
/// The Lifestone's magic protects you from the attack!
///
LifestoneMagicProtectsYou = 0x0502,
///
/// The portal's residual energy protects you from the attack!
///
PortalEnergyProtectsYou = 0x0503,
///
/// You are enveloped in a feeling of warmth as you are brought back into the protection of the Light. You are once again a Non-Player Killer.
///
YouAreNonPKAgain = 0x0504,
///
/// You're too close to your sanctuary!
///
YoureTooCloseToYourSanctuary = 0x0505,
///
/// You can't do that -- you're trading!
///
CantDoThatTradeInProgress = 0x0506,
///
/// Only Non-Player Killers may enter PK Lite. Please see @help pklite for more details about this command.
///
OnlyNonPKsMayEnterPKLite = 0x0507,
///
/// A cold wind touches your heart. You are now a Player Killer Lite.
///
YouAreNowPKLite = 0x0508,
///
/// You do not belong to a Fellowship.
///
YouDoNotBelongToAFellowship = 0x050F,
UsingMaxHooksSilent = 0x0511,
///
/// You are now using the maximum number of hooks. You cannot use another hook until you take an item off one of your hooks.
///
YouAreNowUsingMaxHooks = 0x0512,
///
/// You are no longer using the maximum number of hooks. You may again add items to your hooks.
///
YouAreNoLongerUsingMaxHooks = 0x0513,
///
/// You are not permitted to use that hook.
///
YouAreNotPermittedToUseThatHook = 0x0516,
///
/// The fellowship is locked, you were not added to the fellowship.
///
LockedFellowshipCannotRecruitYou = 0x0519,
///
/// Only the original owner may use that item's magic.
///
ActivationNotAllowedNotOwner = 0x051A,
///
/// Turbine Chat is enabled.
///
TurbineChatIsEnabled = 0x051D,
///
/// You cannot add anymore people to the list of players that you can hear.
///
YouCannotAddPeopleToHearList = 0x0520,
///
/// You are now deaf to player's screams.
///
YouAreNowDeafTo_Screams = 0x0523,
///
/// You can hear all players once again.
///
YouCanHearAllPlayersOnceAgain = 0x0524,
///
/// You chicken out.
///
YouChickenOut = 0x0526,
///
/// You cannot posssibly succeed.
///
YouCanPossiblySucceed = 0x0527,
///
/// The fellowship is locked; you cannot open locked fellowships.
///
FellowshipIsLocked = 0x0528,
///
/// Trade Complete!
///
TradeComplete = 0x0529,
///
/// That is not a salvaging tool.
///
NotASalvageTool = 0x052A,
///
/// That person is not available now.
///
CharacterNotAvailable = 0x052B,
///
/// You must wait 30 days after purchasing a house before you may purchase another with any character on the same account. This applies to all housing except apartments.
///
YouMustWaitToPurchaseHouse = 0x0532,
///
/// You do not have the authority within your allegiance to do that.
///
YouDoNotHaveAuthorityInAllegiance = 0x0535,
///
/// You have the maximum number of accounts banned.!
///
YouHaveMaxAccountsBanned = 0x0540,
///
/// You already have the maximum number of allegiance officers. You must remove some before you add any more.
///
YouHaveMaxAllegianceOfficers = 0x0545,
///
/// Your allegiance officers have been cleared.
///
YourAllegianceOfficersHaveBeenCleared = 0x0546,
///
/// You cannot join any chat channels while gagged.
///
YouCannotJoinChannelsWhileGagged = 0x0548,
///
/// You are no longer an allegiance officer.
///
YouAreNoLongerAllegianceOfficer = 0x054A,
///
/// Your allegiance does not have a hometown.
///
YourAllegianceDoesNotHaveHometown = 0x054C,
///
/// The hook does not contain a usable item. You cannot open the hook because you do not own the house to which it belongs.
///
HookItemNotUsable_CannotOpen = 0x054E,
///
/// The hook does not contain a usable item. Use the '@house hooks on'command to make the hook openable.
///
HookItemNotUsable_CanOpen = 0x054F,
///
/// Out of Range!
///
MissileOutOfRange = 0x0550,
///
/// You must purchase Asheron's Call -- Throne of Destiny to use this function.
///
MustPurchaseThroneOfDestinyToUseFunction = 0x0552,
///
/// You must purchase Asheron's Call -- Throne of Destiny to use this item.
///
MustPurchaseThroneOfDestinyToUseItem = 0x0553,
///
/// You must purchase Asheron's Call -- Throne of Destiny to use this portal.
///
MustPurchaseThroneOfDestinyToUsePortal = 0x0554,
///
/// You must purchase Asheron's Call -- Throne of Destiny to access this quest.
///
MustPurchaseThroneOfDestinyToAccessQuest = 0x0555,
///
/// You have failed to complete the augmentation.
///
YouFailedToCompleteAugmentation = 0x0556,
///
/// You have used this augmentation too many times already.
///
AugmentationUsedTooManyTimes = 0x0557,
///
/// You have used augmentations of this type too many times already.
///
AugmentationTypeUsedTooManyTimes = 0x0558,
///
/// You do not have enough unspent experience available to purchase this augmentation.
///
AugmentationNotEnoughExperience = 0x0559,
///
/// You must exit the Training Academy before that command will be available to you.
///
ExitTrainingAcademyToUseCommand = 0x055D,
///
/// Only Player Killer characters may use this command!
///
OnlyPKsMayUseCommand = 0x055F,
///
/// Only Player Killer Lite characters may use this command!
///
OnlyPKLiteMayUseCommand = 0x0560,
///
/// You may only have a maximum of 50 friends at once. If you wish to add more friends, you must first remove some.
///
MaxFriendsExceeded = 0x0561,
///
/// That character is not on your friends list!
///
ThatCharacterNotOnYourFriendsList = 0x0563,
///
/// Only the character who owns the house may use this command.
///
OnlyHouseOwnerCanUseCommand = 0x0564,
///
/// That allegiance name is invalid because it is empty. Please use the @allegiance name clear command to clear your allegiance name.
///
InvalidAllegianceNameCantBeEmpty = 0x0565,
///
/// That allegiance name is too long. Please choose another name.
///
InvalidAllegianceNameTooLong = 0x0566,
///
/// That allegiance name contains illegal characters. Please choose another name using only letters, spaces, - and '.
///
InvalidAllegianceNameBadCharacters = 0x0567,
///
/// That allegiance name is not appropriate. Please choose another name.
///
InvalidAllegianceNameInappropriate = 0x0568,
///
/// That allegiance name is already in use. Please choose another name.
///
InvalidAllegianceNameAlreadyInUse = 0x0569,
///
/// Your allegiance name has been cleared.
///
AllegianceNameCleared = 0x056B,
///
/// That is already the name of your allegiance!
///
InvalidAllegianceNameSameName = 0x056C,
///
/// That is an invalid officer level.
///
InvalidOfficerLevel = 0x056F,
///
/// That allegiance officer title is not appropriate.
///
AllegianceOfficerTitleIsNotAppropriate = 0x0570,
///
/// That allegiance name is too long. Please choose another name.
///
AllegianceNameIsTooLong = 0x0571,
///
/// All of your allegiance officer titles have been cleared.
///
AllegianceOfficerTitlesCleared = 0x0572,
///
/// That allegiance title contains illegal characters. Please choose another name using only letters, spaces, - and '.
///
AllegianceTitleHasIllegalChars = 0x0573,
///
/// You have not pre-approved any vassals to join your allegiance.
///
YouHaveNotPreApprovedVassals = 0x0579,
///
/// You have cleared the pre-approved vassal for your allegiance.
///
YouHaveClearedPreApprovedVassal = 0x057C,
///
/// That character is already gagged!
///
CharIsAlreadyGagged = 0x057D,
///
/// That character is not currently gagged!
///
CharIsNotCurrentlyGagged = 0x057E,
///
/// Your allegiance chat privileges have been restored.
///
YourAllegianceChatPrivilegesRestored = 0x0581,
///
/// You cannot pick up more of that item!
///
TooManyUniqueItems = 0x0584,
///
/// You are restricted to clothes and armor created for your race.
///
HeritageRequiresSpecificArmor = 0x0585,
///
/// That item was specifically created for another race.
///
ArmorRequiresSpecificHeritage = 0x0586,
///
/// Olthoi cannot interact with that!
///
OlthoiCannotInteractWithThat = 0x0587,
///
/// Olthoi cannot use regular lifestones! Asheron would not allow it!
///
OlthoiCannotUseLifestones = 0x0588,
///
/// The vendor looks at you in horror!
///
OlthoiVendorLooksInHorror = 0x0589,
///
/// As a mindless engine of destruction an Olthoi cannot join a fellowship!
///
OlthoiCannotJoinFellowship = 0x058B,
///
/// The Olthoi only have an allegiance to the Olthoi Queen!
///
OlthoiCannotJoinAllegiance = 0x058C,
///
/// You cannot use that item!
///
YouCannotUseThatItem = 0x058D,
///
/// This person will not interact with you!
///
ThisPersonWillNotInteractWithYou = 0x058E,
///
/// Only Olthoi may pass through this portal!
///
OnlyOlthoiMayUsePortal = 0x058F,
///
/// Olthoi may not pass through this portal!
///
OlthoiMayNotUsePortal = 0x0590,
///
/// You may not pass through this portal while Vitae weakens you!
///
YouMayNotUsePortalWithVitae = 0x0591,
///
/// This character must be two weeks old or have been created on an account at least two weeks old to use this portal!
///
YouMustBeTwoWeeksOldToUsePortal = 0x0592,
///
/// Olthoi characters can only use Lifestone and PK Arena recalls!
///
OlthoiCanOnlyRecallToLifestone = 0x0593,
ContractError = 0x0594
}
}