mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
2435870ec5
Added the GM animation and stun for the Nexus Tower Paradox Panels for mission 1281. Tested on local instance and animation played correctly when having the mission and did not play at all before or after completing the mission
72 lines
2.4 KiB
C++
72 lines
2.4 KiB
C++
#include "NtParadoxPanelServer.h"
|
|
#include "GameMessages.h"
|
|
#include "MissionComponent.h"
|
|
#include "EntityManager.h"
|
|
#include "Character.h"
|
|
|
|
void NtParadoxPanelServer::OnUse(Entity* self, Entity* user)
|
|
{
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"bActive", 1, 0, user->GetObjectID(), "", user->GetSystemAddress());
|
|
|
|
GameMessages::SendTerminateInteraction(user->GetObjectID(), eTerminateType::FROM_INTERACTION, self->GetObjectID());
|
|
|
|
self->SetVar(u"bActive", true);
|
|
|
|
auto* missionComponent = user->GetComponent<MissionComponent>();
|
|
|
|
const auto playerID = user->GetObjectID();
|
|
|
|
for (const auto mission : tPlayerOnMissions)
|
|
{
|
|
if (missionComponent->GetMissionState(mission) != MissionState::MISSION_STATE_ACTIVE)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
self->AddCallbackTimer(2, [this, self, playerID] () {
|
|
auto* player = EntityManager::Instance()->GetEntity(playerID);
|
|
|
|
if (player == nullptr)
|
|
{
|
|
return;
|
|
}
|
|
|
|
const auto flag = self->GetVar<int32_t>(u"flag");
|
|
|
|
player->GetCharacter()->SetPlayerFlag(flag, true);
|
|
|
|
GameMessages::SendPlayAnimation(player, u"rebuild-celebrate");
|
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"SparkStop", 0, 0, player->GetObjectID(), "", player->GetSystemAddress());
|
|
GameMessages::SendSetStunned(player->GetObjectID(), eStunState::POP, player->GetSystemAddress(), LWOOBJID_EMPTY, false, false, true, false, true, true, false, false, true);
|
|
self->SetVar(u"bActive", false);
|
|
});
|
|
GameMessages::SendPlayAnimation(user, u"nexus-powerpanel", 6.0f);
|
|
GameMessages::SendSetStunned(user->GetObjectID(), eStunState::PUSH, user->GetSystemAddress(), LWOOBJID_EMPTY, false, false, true, false, true, true, false, false, true);
|
|
return;
|
|
}
|
|
|
|
GameMessages::SendPlayAnimation(user, shockAnim);
|
|
|
|
const auto dir = self->GetRotation().GetRightVector();
|
|
|
|
GameMessages::SendKnockback(user->GetObjectID(), self->GetObjectID(), self->GetObjectID(), 0, {dir.x * 15, 5, dir.z * 15});
|
|
|
|
GameMessages::SendPlayFXEffect(self, 6432, u"create", "console_sparks", LWOOBJID_EMPTY, 1.0, 1.0, true);
|
|
|
|
self->AddCallbackTimer(2, [this, self, playerID] () {
|
|
auto* player = EntityManager::Instance()->GetEntity(playerID);
|
|
|
|
if (player == nullptr)
|
|
{
|
|
return;
|
|
}
|
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"bActive", 0, 0, player->GetObjectID(), "", player->GetSystemAddress());
|
|
|
|
GameMessages::SendStopFXEffect(self, true, "console_sparks");
|
|
|
|
self->SetVar(u"bActive", false);
|
|
});
|
|
}
|