DarkflameServer/dScripts/ai/FV/FvGuildCreate.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
398 B
C++
Raw Normal View History

#include "FvGuildCreate.h"
#include "GameMessages.h"
2023-11-16 06:32:50 +00:00
#include "Amf3.h"
// Server script for Guild Master NPC in FV area.
// This NPC will react to a user interaction and display
// the guild creation screen.
void FvGuildCreate::OnUse(Entity* self, Entity* user) {
2023-11-16 06:32:50 +00:00
AMFArrayValue args;
GameMessages::SendUIMessageServerToSingleClient(user, user->GetSystemAddress(), "ToggleGuildCreate", args);
}