mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-22 07:18:08 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
22
dScripts/AgShipPlayerShockServer.cpp
Normal file
22
dScripts/AgShipPlayerShockServer.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "AgShipPlayerShockServer.h"
|
||||
#include "GameMessages.h"
|
||||
|
||||
void AgShipPlayerShockServer::OnUse(Entity* self, Entity* user)
|
||||
{
|
||||
GameMessages::SendTerminateInteraction(user->GetObjectID(), eTerminateType::FROM_INTERACTION, self->GetObjectID());
|
||||
if (active) {
|
||||
return;
|
||||
}
|
||||
active = true;
|
||||
GameMessages::SendPlayAnimation(user, shockAnim);
|
||||
GameMessages::SendKnockback(user->GetObjectID(), self->GetObjectID(), self->GetObjectID(), 0, NiPoint3(-20, 10, -20));
|
||||
|
||||
GameMessages::SendPlayFXEffect(self, 1430, u"create", "console_sparks", LWOOBJID_EMPTY, 1.0, 1.0, true);
|
||||
self->AddTimer("FXTime", fxTime);
|
||||
}
|
||||
|
||||
void AgShipPlayerShockServer::OnTimerDone(Entity* self, std::string timerName)
|
||||
{
|
||||
GameMessages::SendStopFXEffect(self, true, "console_sparks");
|
||||
active = false;
|
||||
}
|
Reference in New Issue
Block a user