mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-09 08:58:04 +00:00
WIP
This commit is contained in:
@@ -472,13 +472,6 @@ enum eGameActivities : uint32_t {
|
||||
ACTIVITY_PET_TAMING
|
||||
};
|
||||
|
||||
enum eGuildCreationResponses {
|
||||
CREATED = 0,
|
||||
REJECTED_BAD_NAME,
|
||||
REJECTED_EXISTS,
|
||||
UNKNOWN_ERROR
|
||||
};
|
||||
|
||||
enum ePlayerFlags {
|
||||
BTARR_TESTING = 0,
|
||||
PLAYER_HAS_ENTERED_PET_RANCH = 1,
|
||||
|
@@ -355,9 +355,27 @@ enum GAME_MSG : unsigned short {
|
||||
GAME_MSG_REGISTER_PET_DBID = 566,
|
||||
GAME_MSG_SHOW_ACTIVITY_COUNTDOWN = 568,
|
||||
GAME_MSG_START_ACTIVITY_TIME = 576,
|
||||
GAME_MSG_GUILD_GET_SIZE = 580,
|
||||
GAME_MSG_SET_CHAR_GUILD_INFO = 581,
|
||||
GAME_MSG_GET_CHAR_GUILD_INFO = 582,
|
||||
GAME_MSG_GET_CHAR_IS_IN_GUILD = 583,
|
||||
GAME_MSG_RE_RENDER_NAME_BILLBOARD = 584,
|
||||
GAME_MSG_IS_IN_LOCAL_CHAR_PROXIMTY = 585,
|
||||
GAME_MSG_GUILD_SET_STATUS = 586,
|
||||
GAME_MSG_GUILD_ADD_PLAYER = 587,
|
||||
GAME_MSG_GUILD_REMOVE_PLAYER = 588,
|
||||
GAME_MSG_GUILD_UPDATE_PLAYER_NAME = 589,
|
||||
GAME_MSG_GUILD_SET_PLAYER_RANK = 590,
|
||||
GAME_MSG_GUILD_SET_ONLINE_STATUS = 591,
|
||||
GAME_MSG_GUILD_INVITE = 592,
|
||||
GAME_MSG_REQUEST_GUILD_DATA = 593,
|
||||
GAME_MSG_POPULATE_GUILD = 594,
|
||||
GAME_MSG_GET_CACHED_GUILD_DATA = 595,
|
||||
GAME_MSG_GUILD_RENDER_NAME = 596,
|
||||
GAME_MSG_ACTIVITY_PAUSE = 602,
|
||||
GAME_MSG_USE_NON_EQUIPMENT_ITEM = 603,
|
||||
GAME_MSG_USE_ITEM_RESULT = 607,
|
||||
GAME_MSG_DISPLAY_GUILD_CREATE_BOX = 626,
|
||||
GAME_MSG_COMMAND_PET = 640,
|
||||
GAME_MSG_PET_RESPONSE = 641,
|
||||
GAME_MSG_REQUEST_ACTIVITY_SUMMARY_LEADERBOARD_DATA = 648,
|
||||
|
13
dCommon/dEnums/eGuildCreationResponse.h
Normal file
13
dCommon/dEnums/eGuildCreationResponse.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef __EGUILDCREATIONRESPONSE__H__
|
||||
#define __EGUILDCREATIONRESPONSE__H__
|
||||
|
||||
enum eGuildCreationResponse {
|
||||
CREATED = 0,
|
||||
REJECTED_BAD_NAME,
|
||||
REJECTED_EXISTS,
|
||||
UNKNOWN_ERROR
|
||||
};
|
||||
|
||||
#endif //!__EGUILDCREATIONRESPONSE__H__
|
14
dCommon/dEnums/eGuildRank.h
Normal file
14
dCommon/dEnums/eGuildRank.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef __EGUILDRANK__H__
|
||||
#define __EGUILDRANK__H__
|
||||
|
||||
|
||||
enum eGuildRank {
|
||||
FOUNDER = 1,
|
||||
RANK2,
|
||||
RANK3,
|
||||
MEMBER
|
||||
};
|
||||
|
||||
#endif //!__EGUILDRANK__H__
|
Reference in New Issue
Block a user