mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
* [Items] Overhaul Item Hand-in System * Edge case lua fix * Merge fix * I'm going to be amazed if this works first try * Update linux-build.sh * Update linux-build.sh * Update linux-build.sh * Update linux-build.sh * Update linux-build.sh * Update linux-build.sh * Update linux-build.sh * Update linux-build.sh * Add protections against scripts that hand back items themselves * Remove EVENT_ITEM_ScriptStopReturn * test * Update npc_handins.cpp * Add Items:AlwaysReturnHandins * Update spdat.cpp * Bypass update prompt on CI
18 lines
545 B
C++
18 lines
545 B
C++
#ifndef EQEMU_ZONE_CLI_H
|
|
#define EQEMU_ZONE_CLI_H
|
|
|
|
#include "../common/cli/argh.h"
|
|
|
|
class ZoneCLI {
|
|
public:
|
|
static void CommandHandler(int argc, char **argv);
|
|
static void SidecarServeHttp(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static bool RanConsoleCommand(int argc, char **argv);
|
|
static bool RanSidecarCommand(int argc, char **argv);
|
|
static bool RanTestCommand(int argc, char **argv);
|
|
static void NpcHandins(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
};
|
|
|
|
|
|
#endif //EQEMU_ZONE_CLI_H
|