mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
* Initial commit checkpoint * More functions converted * Commify * More functions * Fin * Sort declarations * Split functions between files * Bots * Update strings.h * Split * Revert find replaces * Repository template * Money * Misc function * Update CMakeLists.txt * Saylink * Update strings.cpp * Swap Strings::Saylink for Saylink::Create since saylink is coupled to zone database * API casings
34 lines
942 B
C++
Executable File
34 lines
942 B
C++
Executable File
#include "../client.h"
|
|
#include "../worldserver.h"
|
|
|
|
extern WorldServer worldserver;
|
|
|
|
void command_camerashake(Client *c, const Seperator *sep)
|
|
{
|
|
int arguments = sep->argnum;
|
|
if (!arguments || !sep->IsNumber(1) || !sep->IsNumber(2)) {
|
|
c->Message(Chat::Red, "Usage: #camerashake [Duration (Milliseconds)] [Intensity (1-10)]");
|
|
return;
|
|
}
|
|
|
|
auto duration = std::stoi(sep->arg[1]);
|
|
auto intensity = std::stoi(sep->arg[2]);
|
|
|
|
auto pack = new ServerPacket(ServerOP_CameraShake, sizeof(ServerCameraShake_Struct));
|
|
ServerCameraShake_Struct *camera_shake = (ServerCameraShake_Struct *) pack->pBuffer;
|
|
camera_shake->duration = duration;
|
|
camera_shake->intensity = intensity;
|
|
worldserver.SendPacket(pack);
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Sending camera shake to world with a duration of {} ({}) and an intensity of {}.",
|
|
Strings::MillisecondsToTime(duration),
|
|
duration,
|
|
intensity
|
|
).c_str()
|
|
);
|
|
safe_delete(pack);
|
|
}
|
|
|