|
|
|
@ -34,6 +34,7 @@ namespace mwmp
|
|
|
|
|
|
|
|
|
|
LOG_APPEND(Log::LOG_INFO, "- Started information exchange with %s", other->npc.mName.c_str());
|
|
|
|
|
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_SHAPESHIFT)->setPlayer(other);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_STATS_DYNAMIC)->setPlayer(other);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->setPlayer(other);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_POSITION)->setPlayer(other);
|
|
|
|
@ -41,6 +42,7 @@ namespace mwmp
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->setPlayer(other);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ANIM_FLAGS)->setPlayer(other);
|
|
|
|
|
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_SHAPESHIFT)->Send(pl->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_STATS_DYNAMIC)->Send(pl->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->Send(pl->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_POSITION)->Send(pl->guid);
|
|
|
|
@ -48,12 +50,14 @@ namespace mwmp
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->Send(pl->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ANIM_FLAGS)->Send(pl->guid);
|
|
|
|
|
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_SHAPESHIFT)->setPlayer(pl);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_STATS_DYNAMIC)->setPlayer(pl);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->setPlayer(pl);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_SKILL)->setPlayer(pl);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->setPlayer(pl);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ANIM_FLAGS)->setPlayer(pl);
|
|
|
|
|
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_SHAPESHIFT)->Send(other->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_STATS_DYNAMIC)->Send(other->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->Send(other->guid);
|
|
|
|
|
playerController->GetPacket(ID_PLAYER_SKILL)->Send(other->guid);
|
|
|
|
|