mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 16:37:45 +00:00
some marketboard shit
This commit is contained in:
parent
61ee5bb16a
commit
48c0f96ce6
3 changed files with 27 additions and 1 deletions
|
@ -97,10 +97,12 @@ namespace Sapphire::Network::Packets
|
||||||
ReqMoogleMailLetter = 0x011A, // updated 4.4
|
ReqMoogleMailLetter = 0x011A, // updated 4.4
|
||||||
MailLetterNotification = 0x011B, // updated 4.4
|
MailLetterNotification = 0x011B, // updated 4.4
|
||||||
|
|
||||||
ExamineFreeCompanyInfo = 0x013A, // updated 4.1
|
MarketBoardItemSummaryListResponse = 0x0125, // updated 4.4
|
||||||
|
|
||||||
CharaFreeCompanyTag = 0x0127, // updated 4.4
|
CharaFreeCompanyTag = 0x0127, // updated 4.4
|
||||||
FreeCompanyBoardMsg = 0x0128, // updated 4.4
|
FreeCompanyBoardMsg = 0x0128, // updated 4.4
|
||||||
FreeCompanyInfo = 0x0129, // updated 4.4
|
FreeCompanyInfo = 0x0129, // updated 4.4
|
||||||
|
ExamineFreeCompanyInfo = 0x013A, // updated 4.1
|
||||||
|
|
||||||
StatusEffectList = 0x0149, // updated 4.4
|
StatusEffectList = 0x0149, // updated 4.4
|
||||||
Effect = 0x014C, // updated 4.4
|
Effect = 0x014C, // updated 4.4
|
||||||
|
@ -258,6 +260,8 @@ namespace Sapphire::Network::Packets
|
||||||
|
|
||||||
LinkshellListHandler = 0x00F4, // updated 4.3
|
LinkshellListHandler = 0x00F4, // updated 4.3
|
||||||
|
|
||||||
|
MarketBoardRequestItemListings = 0x00FE, // updated 4.4
|
||||||
|
|
||||||
SearchMarketboard = 0x0103, // updated 4.3
|
SearchMarketboard = 0x0103, // updated 4.3
|
||||||
ReqExamineFcInfo = 0x010F, // updated 4.1
|
ReqExamineFcInfo = 0x010F, // updated 4.1
|
||||||
|
|
||||||
|
|
|
@ -233,6 +233,13 @@ struct FFXIVIpcSetSharedEstateSettings :
|
||||||
/* 0029 */ char padding3[0x7];
|
/* 0029 */ char padding3[0x7];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct FFXIVIpcMarketBoardRequestItemListings :
|
||||||
|
FFXIVIpcBasePacket< MarketBoardRequestItemListings >
|
||||||
|
{
|
||||||
|
/* 0000 */ uint32_t itemCatalogId;
|
||||||
|
/* 0004 */ uint32_t padding;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1830,6 +1830,21 @@ struct FFXIVIpcDuelChallenge :
|
||||||
char otherName[32];
|
char otherName[32];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct FFXIVIpcMarketBoardItemSummaryListResponse :
|
||||||
|
FFXIVIpcBasePacket< MarketBoardItemSummaryListResponse >
|
||||||
|
{
|
||||||
|
struct MarketBoardItemSummary
|
||||||
|
{
|
||||||
|
uint32_t itemId;
|
||||||
|
uint32_t quantity;
|
||||||
|
} items[20];
|
||||||
|
|
||||||
|
uint32_t itemIndexEnd;
|
||||||
|
uint32_t padding1;
|
||||||
|
uint32_t itemIndexStart;
|
||||||
|
uint32_t padding2;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
} /* Server */
|
} /* Server */
|
||||||
} /* Packets */
|
} /* Packets */
|
||||||
|
|
Loading…
Add table
Reference in a new issue