mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-01 18:30:39 +00:00
Restructure to remove more things.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
#include "../../client.h"
|
||||
|
||||
uint8 GetCommandStatus(std::string command_name);
|
||||
|
||||
void FindSpell(Client *c, const Seperator *sep)
|
||||
{
|
||||
if (SPDAT_RECORDS <= 0) {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#include "../../client.h"
|
||||
|
||||
uint8 GetCommandStatus(std::string command_name);
|
||||
|
||||
void FindTask(Client *c, const Seperator *sep)
|
||||
{
|
||||
if (!RuleB(TaskSystem, EnableTaskSystem)) {
|
||||
|
||||
+16
-15
@@ -1,5 +1,21 @@
|
||||
#include "../client.h"
|
||||
|
||||
void SendFixMobSubCommands(Client* c)
|
||||
{
|
||||
c->Message(Chat::White, "Usage: #fixmob beard [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob beard_color [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob drakkin_details [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob drakkin_heritage [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob drakkin_tattoo [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob face [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob gender [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob hair [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob hair_color [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob helm [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob race [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob texture [Next|Previous]");
|
||||
}
|
||||
|
||||
void command_fixmob(Client *c, const Seperator *sep)
|
||||
{
|
||||
const int arguments = sep->argnum;
|
||||
@@ -269,18 +285,3 @@ void command_fixmob(Client *c, const Seperator *sep)
|
||||
);
|
||||
}
|
||||
|
||||
void SendFixMobSubCommands(Client *c)
|
||||
{
|
||||
c->Message(Chat::White, "Usage: #fixmob beard [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob beard_color [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob drakkin_details [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob drakkin_heritage [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob drakkin_tattoo [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob face [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob gender [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob hair [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob hair_color [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob helm [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob race [Next|Previous]");
|
||||
c->Message(Chat::White, "Usage: #fixmob texture [Next|Previous]");
|
||||
}
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
#include "../../client.h"
|
||||
#include "../../worldserver.h"
|
||||
|
||||
extern WorldServer worldserver;
|
||||
|
||||
void SetZoneData(Client *c, const Seperator *sep)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user