mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
44 lines
954 B
C++
Executable File
44 lines
954 B
C++
Executable File
#include "../client.h"
|
|
#include "../fastmath.h"
|
|
|
|
extern FastMath g_Math;
|
|
|
|
void command_push(Client *c, const Seperator *sep)
|
|
{
|
|
int arguments = sep->argnum;
|
|
if (!arguments || !sep->IsNumber(1)) {
|
|
c->Message(Chat::White, "Usage: #push [Back Push] [Up Push]");
|
|
return;
|
|
}
|
|
|
|
if (!c->GetTarget() || !c->GetTarget()->IsNPC()) {
|
|
c->Message(Chat::White, "You must target an NPC to use this command.");
|
|
return;
|
|
}
|
|
|
|
auto target = c->GetTarget();
|
|
auto back = std::stof(sep->arg[1]);
|
|
auto up = 0.0f;
|
|
|
|
if (arguments == 2 && sep->IsNumber(2)) {
|
|
up = std::stof(sep->arg[2]);
|
|
}
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Pushing {} ({}) with a push back of {:.2f} and a push up of {:.2f}.",
|
|
target->GetCleanName(),
|
|
target->GetID(),
|
|
back,
|
|
up
|
|
).c_str()
|
|
);
|
|
|
|
target->IncDeltaX(back * g_Math.FastSin(c->GetHeading()));
|
|
target->IncDeltaY(back * g_Math.FastCos(c->GetHeading()));
|
|
target->IncDeltaZ(up);
|
|
target->SetForcedMovement(6);
|
|
}
|
|
|