DarkflameServer/dScripts/02_server/Map/AG/NpcEpsilonServer.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
373 B
C++
Raw Normal View History

#include "NpcEpsilonServer.h"
#include "GameMessages.h"
void NpcEpsilonServer::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState) {
//If we are completing the Nexus Force join mission, play the celebration for it:
if (missionID == 1851) {
GameMessages::SendStartCelebrationEffect(target, target->GetSystemAddress(), 22);
}
}