DarkflameServer/dScripts/AgSalutingNpcs.cpp

12 lines
243 B
C++
Raw Normal View History

#include "AgSalutingNpcs.h"
#include "GameMessages.h"
2022-07-28 13:39:57 +00:00
void AgSalutingNpcs::OnEmoteReceived(Entity* self, const int32_t emote, Entity* target) {
if (emote != 356) {
return;
}
GameMessages::SendPlayAnimation(self, u"salutePlayer");
}