From e694237fdfa7b4922d59a8e51a80096e94e9dd94 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 14 五月 2024 14:56:47 +0800
Subject: [PATCH] 10050 【后端】角色(部分封包同步Face信息)
---
ServerPack/GameServerPack/HA4_Family/ChuangongInviteInfo.h | 25 ++++++------
ServerPack/GameServerPack/HA9_Function/RecommendFriendsInfo.h | 1
ServerPack/GameServerPack/HA9_Function/SkyTowerPassPlayerInfo.h | 53 +++++++++++++-------------
ServerPack/GameServerPack/HB3_PlayerSocial/B3 03.h | 1
4 files changed, 42 insertions(+), 38 deletions(-)
diff --git a/ServerPack/GameServerPack/HA4_Family/ChuangongInviteInfo.h b/ServerPack/GameServerPack/HA4_Family/ChuangongInviteInfo.h
index 88006ab..7db31b9 100644
--- a/ServerPack/GameServerPack/HA4_Family/ChuangongInviteInfo.h
+++ b/ServerPack/GameServerPack/HA4_Family/ChuangongInviteInfo.h
@@ -1,12 +1,13 @@
-// A4 11 传功邀请信息 #tagGCChuangongInviteInfo
-
-struct tagGCChuangongInviteInfo
-{
- tagHead Head;
- DWORD PlayerID; // 发起邀请的玩家ID
- BYTE NameLen;
- char Name[NameLen]; // 发起邀请的玩家名,size = NameLen
- WORD LV; // 玩家等级
- BYTE Job; // 玩家职业
- WORD RealmLV; // 玩家境界等级
-};
+// A4 11 传功邀请信息 #tagGCChuangongInviteInfo
+
+struct tagGCChuangongInviteInfo
+{
+ tagHead Head;
+ DWORD PlayerID; // 发起邀请的玩家ID
+ BYTE NameLen;
+ char Name[NameLen]; // 发起邀请的玩家名,size = NameLen
+ WORD LV; // 玩家等级
+ BYTE Job; // 玩家职业
+ WORD RealmLV; // 玩家境界等级
+ DWORD Face; //基本脸型
+};
diff --git a/ServerPack/GameServerPack/HA9_Function/RecommendFriendsInfo.h b/ServerPack/GameServerPack/HA9_Function/RecommendFriendsInfo.h
index c68e4f4..25ee925 100644
--- a/ServerPack/GameServerPack/HA9_Function/RecommendFriendsInfo.h
+++ b/ServerPack/GameServerPack/HA9_Function/RecommendFriendsInfo.h
@@ -7,6 +7,7 @@
DWORD LV; //等级
BYTE Job;
WORD RealmLV; //境界
+ DWORD Face; //基本脸型
};
struct tagGCRecommendFriendsInfo
diff --git a/ServerPack/GameServerPack/HA9_Function/SkyTowerPassPlayerInfo.h b/ServerPack/GameServerPack/HA9_Function/SkyTowerPassPlayerInfo.h
index 4683406..f76e1e3 100644
--- a/ServerPack/GameServerPack/HA9_Function/SkyTowerPassPlayerInfo.h
+++ b/ServerPack/GameServerPack/HA9_Function/SkyTowerPassPlayerInfo.h
@@ -1,26 +1,27 @@
-// A9 AD 通知天星塔全服奖励通关玩家信息 #tagGCSkyTowerPassPlayerInfo
-
-struct tagGCSkyTowerPassPlayer
-{
- DWORD PlayerID;
- char PlayerName[33];
- BYTE Job;
- WORD LV; //等级
- WORD RealmLV; //境界
-};
-
-struct tagGCSkyTowerPassFloor
-{
- DWORD FloorID; // 层ID
- BYTE PassPlayerCount; // 通关记录玩家数
- DWORD PassPlayerIDList[PassPlayerCount]; // 通关记录玩家ID列表 [第1个通过玩家ID, 第2个, ...]
-};
-
-struct tagGCSkyTowerPassPlayerInfo
-{
- tagHead Head;
- WORD FloorCount;
- tagGCSkyTowerPassFloor PassFloorList[FloorCount]; // 通关塔层信息列表
- WORD PlayerCount;
- tagGCSkyTowerPassPlayer PassPlayerList[PlayerCount]; // 通关玩家信息列表
-};
+// A9 AD 通知天星塔全服奖励通关玩家信息 #tagGCSkyTowerPassPlayerInfo
+
+struct tagGCSkyTowerPassPlayer
+{
+ DWORD PlayerID;
+ char PlayerName[33];
+ BYTE Job;
+ WORD LV; //等级
+ WORD RealmLV; //境界
+ DWORD Face; //基本脸型
+};
+
+struct tagGCSkyTowerPassFloor
+{
+ DWORD FloorID; // 层ID
+ BYTE PassPlayerCount; // 通关记录玩家数
+ DWORD PassPlayerIDList[PassPlayerCount]; // 通关记录玩家ID列表 [第1个通过玩家ID, 第2个, ...]
+};
+
+struct tagGCSkyTowerPassPlayerInfo
+{
+ tagHead Head;
+ WORD FloorCount;
+ tagGCSkyTowerPassFloor PassFloorList[FloorCount]; // 通关塔层信息列表
+ WORD PlayerCount;
+ tagGCSkyTowerPassPlayer PassPlayerList[PlayerCount]; // 通关玩家信息列表
+};
diff --git a/ServerPack/GameServerPack/HB3_PlayerSocial/B3 03.h b/ServerPack/GameServerPack/HB3_PlayerSocial/B3 03.h
index 6453584..b79eb00 100644
--- a/ServerPack/GameServerPack/HB3_PlayerSocial/B3 03.h
+++ b/ServerPack/GameServerPack/HB3_PlayerSocial/B3 03.h
@@ -7,4 +7,5 @@
char Name[33];
WORD LV;
WORD RealmLV; //境界等级
+ DWORD Face; //基本脸型
};
--
Gitblit v1.8.0