DarkflameServer/dScripts/AgSalutingNpcs.cpp
EmosewaMC a91309c5f8 Scripts A-B
Gonna be doing this in alphabetical order now.
2022-06-22 21:11:31 -07:00

14 lines
244 B
C++

#include "AgSalutingNpcs.h"
#include "GameMessages.h"
void AgSalutingNpcs::OnEmoteReceived(Entity* self, const int32_t emote, Entity* target)
{
if (emote != 356)
{
return;
}
GameMessages::SendPlayAnimation(self, u"salutePlayer");
}