mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-25 19:17:45 +00:00
more opcode
This commit is contained in:
parent
a3e5b66508
commit
0c4b9d564a
3 changed files with 10 additions and 10 deletions
|
@ -61,7 +61,7 @@ namespace Sapphire::Network::Packets
|
|||
|
||||
///////////////////////////////////////////////////
|
||||
|
||||
ChatBanned = 0x006B,
|
||||
ChatBanned = 0x0000,//0x006B,
|
||||
Playtime = 0x00E7, // updated 5.18
|
||||
Logout = 0x0A1, // updated 5.2
|
||||
CFNotify = 0x01F8, // updated 5.18
|
||||
|
@ -78,9 +78,9 @@ namespace Sapphire::Network::Packets
|
|||
|
||||
LogMessage = 0x00D0,
|
||||
|
||||
Chat = 0x0000, // updated 5.18
|
||||
Chat = 0x0154, // updated 5.2
|
||||
|
||||
WorldVisitList = 0x00FE, // added 4.5
|
||||
WorldVisitList = 0x0000,//0x00FE, // added 4.5
|
||||
|
||||
SocialList = 0x033E, // updated 5.2
|
||||
|
||||
|
@ -102,7 +102,7 @@ namespace Sapphire::Network::Packets
|
|||
|
||||
LinkshellList = 0x028C, // updated 5.2
|
||||
|
||||
MailDeleteRequest = 0x012B, // updated 5.0
|
||||
MailDeleteRequest = 0x0000,//0x012B, // updated 5.0
|
||||
|
||||
// 12D - 137 - constant gap between 4.5x -> 5.0
|
||||
ReqMoogleMailList = 0x0138, // updated 5.0
|
||||
|
@ -157,7 +157,7 @@ namespace Sapphire::Network::Packets
|
|||
ActorOwner = 0x03BB, // updated 5.18
|
||||
PlayerStateFlags = 0x032B, // updated 5.2
|
||||
PlayerClassInfo = 0x039A, // updated 5.2
|
||||
Effect037F = 0x037F, // 5.18
|
||||
Effect0095 = 0x0095, // updated 5.2
|
||||
|
||||
ModelEquip = 0x02E6, // updated 5.18
|
||||
Examine = 0x038B, // updated 5.2
|
||||
|
@ -214,7 +214,7 @@ namespace Sapphire::Network::Packets
|
|||
SomeDirectorUnk4 = 0x0100, // updated 5.18
|
||||
SomeDirectorUnk8 = 0x028A, // updated 5.18
|
||||
SomeDirectorUnk16 = 0x028C, // updated 5.18
|
||||
DirectorPopUp = 0x0162, // updated 5.18 - display dialogue pop-ups in duties and FATEs, for example, Teraflare's countdown
|
||||
DirectorPopUp = 0x0000,//0x0162, // updated 5.18 - display dialogue pop-ups in duties and FATEs, for example, Teraflare's countdown
|
||||
DirectorPopUp4 = 0x0214, // updated 5.18
|
||||
DirectorPopUp8 = 0x00F8, // updated 5.18
|
||||
|
||||
|
|
|
@ -1993,7 +1993,7 @@ namespace Sapphire::Network::Packets::Server
|
|||
char otherName[32];
|
||||
};
|
||||
|
||||
struct FFXIVIpcEffect037F : FFXIVIpcBasePacket< Effect037F >
|
||||
struct FFXIVIpcEffect0095 : FFXIVIpcBasePacket< Effect0095 >
|
||||
{
|
||||
uint32_t value1;
|
||||
uint32_t value2;
|
||||
|
|
|
@ -2160,7 +2160,7 @@ bool Sapphire::Entity::Player::checkAction()
|
|||
void Sapphire::Entity::Player::gaugeClear()
|
||||
{
|
||||
std::memset( m_gauge, 0, sizeof( m_gauge ) );
|
||||
auto pPacket = makeZonePacket< FFXIVIpcEffect037F >( getId() );
|
||||
auto pPacket = makeZonePacket< FFXIVIpcEffect0095 >( getId() );
|
||||
queuePacket( pPacket );
|
||||
}
|
||||
|
||||
|
@ -2189,11 +2189,11 @@ void Sapphire::Entity::Player::gaugeWarSetIb( uint8_t value )
|
|||
if( ( oldValue == 0 && value != 0 ) ||
|
||||
( oldValue != 0 && value == 0 ) )
|
||||
{
|
||||
auto pPacket = makeZonePacket< FFXIVIpcEffect037F >( getId() );
|
||||
auto pPacket = makeZonePacket< FFXIVIpcEffect0095 >( getId() );
|
||||
if( value != 0 )
|
||||
{
|
||||
pPacket->data().value1 = 0x07;
|
||||
pPacket->data().value2 = 0x7C;
|
||||
pPacket->data().value2 = 0x7FED;
|
||||
}
|
||||
queuePacket( pPacket );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue