-
Notifications
You must be signed in to change notification settings - Fork 42
ConsignmentErrorCode
DummkopfOfHachtenduden edited this page Aug 21, 2016
·
1 revision
/// <summary>
/// 007BB205 . 05 F98FFFFF ADD EAX,FFFF8FF9 ; Switch (cases 7007..7022)
/// </summary>
public enum ConsignmentErrorCodes : ushort
{
/// <summary>
/// Item registration is done by page. Please register your items from a previous page first.
/// </summary>
UIIT_STT_OPEN_MARKET_ENTER_PAGE_ERROR = 0x7007,
/// <summary>
/// You have no or insufficient deposit to register the item(s).
/// </summary>
UIIT_STT_OPEN_MARKET_ENTER_ERROR = 0x7008,
/// <summary>
/// This item cannot be consigned.
/// </summary>
UIIT_STT_OPEN_MARKET_SELL_IMPOSSIBLE = 0x700A,
//UIIT_STT_OPEN_MARKET_SELL_IMPOSSIBLE = 0x700B,
/// <summary>
/// Item cannot be purchased due to lack of gold.
/// </summary>
UIIT_MSG_GUILD_LACK_GOLD = 0x700D,
//007BB242 > 68 6074E100 PUSH sro_clie.00E17460 ; Cases 700F,7010,7017,7018 of switch 007BB205
SWALLOWED = 0x700F,
//SWALLOWED = 0x7010,
//SWALLOWED = 0x7017,
//SWALLOWED = 0x7018,
/// <summary>
/// The item has expired or already sold and cannot be purchased.
/// </summary>
UIIT_STT_OPEN_MARKET_BUYING_ERROR = 0x7019,
//UIIT_STT_OPEN_MARKET_BUYING_ERROR = 0x701A,
/// <summary>
/// Invalid search criteria. Cannot search items.
/// </summary>
UIIT_STT_OPEN_MARKET_FIND_ERROR = 0x701B,
/// <summary>
/// The price range has been exceeded.
/// </summary>
UIIT_STT_OPEN_MARKET_COST_OVER_ERROR = 0x701C,
/// <summary>
/// Invalid character
/// </summary>
UIIT_STT_OPEN_MARKET_TEXT_ERROR = 0x701D,
/// <summary>
/// Settlement is in progress, or settlement has already been completed.
/// </summary>
UIIT_STT_OPEN_MARKET_RECEIPTED_ITEM_ERROR = 0x701E,
/// <summary>
/// There are no items to cancel, or there is insufficient space in the inventory.
/// </summary>
UIIT_STT_OPEN_MARKET_CANCEL_ITEM_ERROR = 0x701F,
//UIIT_STT_OPEN_MARKET_CANCEL_ITEM_ERROR = 0x7020,
/// <summary>
/// Must enter 2 characters or more.
/// </summary>
UIIT_STT_OPEN_MARKET_MIN_TEXT_ERROR = 0x7021,
/// <summary>
/// A pet that is being summoned cannot be registered.
/// </summary>
UIIT_STT_OPEN_MARKET_ENTERD_PET_ERROR = 0x7022,
}