mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-13 03:38:20 +00:00
fc75d6048f
* moving branch * Add deleteinven slash command * Change name of BRICKS_IN_BBB * Use string_view instead of strcmp * Clean up include tree * Remove unneeded headers from PCH files Removes unneeded headers from pre-compiled headers. This increases compile time, however reduces development time for most files. * Update Entity.h * Update EntityManager.h * Update GameMessages.cpp * There it compiles now Co-authored-by: Aaron Kimbrell <aronwk.aaron@gmail.com>
26 lines
898 B
C++
26 lines
898 B
C++
#include "BankInteractServer.h"
|
|
#include "GameMessages.h"
|
|
#include "Entity.h"
|
|
#include "AMFFormat.h"
|
|
|
|
void BankInteractServer::OnUse(Entity* self, Entity* user) {
|
|
AMFArrayValue args;
|
|
AMFStringValue* bank = new AMFStringValue();
|
|
bank->SetStringValue("bank");
|
|
args.InsertValue("state", bank);
|
|
|
|
GameMessages::SendUIMessageServerToSingleClient(user, user->GetSystemAddress(), "pushGameState", &args);
|
|
}
|
|
|
|
void BankInteractServer::OnFireEventServerSide(Entity* self, Entity* sender, std::string args, int32_t param1,
|
|
int32_t param2, int32_t param3) {
|
|
if (args == "ToggleBank") {
|
|
AMFArrayValue args;
|
|
args.InsertValue("visible", new AMFFalseValue());
|
|
|
|
GameMessages::SendUIMessageServerToSingleClient(sender, sender->GetSystemAddress(), "ToggleBank", &args);
|
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"CloseBank", 0, 0, LWOOBJID_EMPTY, "", sender->GetSystemAddress());
|
|
}
|
|
}
|