mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
11 lines
373 B
C++
11 lines
373 B
C++
|
#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);
|
||
|
}
|
||
|
}
|