mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
13 lines
398 B
C++
13 lines
398 B
C++
#include "FvGuildCreate.h"
|
|
#include "GameMessages.h"
|
|
#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) {
|
|
AMFArrayValue args;
|
|
GameMessages::SendUIMessageServerToSingleClient(user, user->GetSystemAddress(), "ToggleGuildCreate", args);
|
|
}
|