mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
0545adfac3
Have fun!
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);
|
|
}
|
|
}
|