mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-22 23:38:13 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
17
dScripts/NjGarmadonCelebration.cpp
Normal file
17
dScripts/NjGarmadonCelebration.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "NjGarmadonCelebration.h"
|
||||
#include "Character.h"
|
||||
#include "GameMessages.h"
|
||||
|
||||
void NjGarmadonCelebration::OnCollisionPhantom(Entity *self, Entity *target) {
|
||||
auto* character = target->GetCharacter();
|
||||
|
||||
if (character == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!character->GetPlayerFlag(ePlayerFlags::NJ_GARMADON_CINEMATIC_SEEN)) {
|
||||
character->SetPlayerFlag(ePlayerFlags::NJ_GARMADON_CINEMATIC_SEEN, true);
|
||||
|
||||
GameMessages::SendStartCelebrationEffect(target, target->GetSystemAddress(), GarmadonCelebrationID);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user