From 2e16a7a6cd04d0ca3c841aa295390972e79b07d8 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 10 三月 2026 10:45:14 +0800
Subject: [PATCH] 16 卡牌服务端(删除无用封包)

---
 /dev/null |   13 -------------
 1 files changed, 0 insertions(+), 13 deletions(-)

diff --git a/ServerPack/HA9_Function/BossAttentionInfo b/ServerPack/HA9_Function/BossAttentionInfo
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/BossAttentionInfo
+++ /dev/null
diff --git a/ServerPack/HA9_Function/BossAttentionInfo.des b/ServerPack/HA9_Function/BossAttentionInfo.des
deleted file mode 100644
index 749956f..0000000
--- a/ServerPack/HA9_Function/BossAttentionInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 09 通知BOSS关注记录 #tagGCBossAttentionInfo
diff --git a/ServerPack/HA9_Function/BossAttentionInfo.h b/ServerPack/HA9_Function/BossAttentionInfo.h
deleted file mode 100644
index b577aec..0000000
--- a/ServerPack/HA9_Function/BossAttentionInfo.h
+++ /dev/null
@@ -1,15 +0,0 @@
-// A9 09 通知BOSS关注记录 #tagGCBossAttentionInfo
-
-struct    tagGCBossAttention
-{
-	DWORD		BossID;				// bossID
-	BYTE		AddState;			// 关注状态
-};
-
-struct    tagGCBossAttentionInfo
-
-{
-	tagHead			Head;
-	BYTE			BossCnt;		//boss个数
-	tagGCBossAttention	BossList[BossCnt];	//列表
-};
diff --git a/ServerPack/HA9_Function/BossShuntLineStateInfo b/ServerPack/HA9_Function/BossShuntLineStateInfo
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/BossShuntLineStateInfo
+++ /dev/null
diff --git a/ServerPack/HA9_Function/BossShuntLineStateInfo.des b/ServerPack/HA9_Function/BossShuntLineStateInfo.des
deleted file mode 100644
index 6b83ddc..0000000
--- a/ServerPack/HA9_Function/BossShuntLineStateInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 01 世界boss分流线路boss状态 #tagGCBossShuntLineStateInfo
diff --git a/ServerPack/HA9_Function/BossShuntLineStateInfo.h b/ServerPack/HA9_Function/BossShuntLineStateInfo.h
deleted file mode 100644
index bc38199..0000000
--- a/ServerPack/HA9_Function/BossShuntLineStateInfo.h
+++ /dev/null
@@ -1,17 +0,0 @@
-// A9 01 世界boss分流线路boss状态 #tagGCBossShuntLineStateInfo
-
-struct    tagGCBossShuntLineState
-{
-	DWORD		BossID;		// bossID
-	BYTE		LineCount;
-	BYTE		LineIDList[LineCount];	// 线路ID列表
-	BYTE		StateList[LineCount];	// 对应状态列表, 0-被击杀,1-活着
-};
-
-struct    tagGCBossShuntLineStateInfo
-
-{
-	tagHead		Head;
-	BYTE		Count;
-	tagGCBossShuntLineState	BossLineStateInfo[Count];	//boss分流线路信息列表
-};
diff --git a/ServerPack/HA9_Function/BourseItemPrice b/ServerPack/HA9_Function/BourseItemPrice
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/BourseItemPrice
+++ /dev/null
diff --git a/ServerPack/HA9_Function/BourseItemPrice.des b/ServerPack/HA9_Function/BourseItemPrice.des
deleted file mode 100644
index 16d7906..0000000
--- a/ServerPack/HA9_Function/BourseItemPrice.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 AC 交易所物品最新成交价通知 #tagGCBourseItemPrice
diff --git a/ServerPack/HA9_Function/BourseItemPrice.h b/ServerPack/HA9_Function/BourseItemPrice.h
deleted file mode 100644
index a8833d4..0000000
--- a/ServerPack/HA9_Function/BourseItemPrice.h
+++ /dev/null
@@ -1,8 +0,0 @@
-// A9 AC 交易所物品最新成交价通知 #tagGCBourseItemPrice
-
-struct	tagGCBourseItemPrice
-{
-	tagHead		Head;
-	DWORD		ItemID;		//物品ID
-	DWORD		Price;		//最新成交单价
-};
diff --git a/ServerPack/HA9_Function/BourseRecord b/ServerPack/HA9_Function/BourseRecord
deleted file mode 100644
index 76c92d5..0000000
--- a/ServerPack/HA9_Function/BourseRecord
+++ /dev/null
Binary files differ
diff --git a/ServerPack/HA9_Function/BourseRecord.des b/ServerPack/HA9_Function/BourseRecord.des
deleted file mode 100644
index 14f7b1b..0000000
--- a/ServerPack/HA9_Function/BourseRecord.des
+++ /dev/null
@@ -1,2 +0,0 @@
-A9 AB 交易所交易记录通知 #tagGCBourseRecordInfo
-
diff --git a/ServerPack/HA9_Function/BourseRecord.h b/ServerPack/HA9_Function/BourseRecord.h
deleted file mode 100644
index f9f327a..0000000
--- a/ServerPack/HA9_Function/BourseRecord.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// A9 AB 交易所交易记录通知 #tagGCBourseRecordInfo
-
-struct	tagGCBourseRecord
-{
-	BYTE		Type;		//类型 0-购买 1-卖出
-	DWORD		Timestamp;	//时间戳
-	DWORD		TradeTax;	//交易税
-	DWORD		TradeMoney;	//收支
-	WORD		ItemDataLen;
-	char		ItemData[ItemDataLen];	//自定义数据
-};
-
-struct	tagGCBourseRecordInfo
-{
-	tagHead		Head;
-	BYTE		Count;		//数量
-	tagGCBourseRecord	RecordList[Count];		//size = Count
-};
diff --git a/ServerPack/HA9_Function/DelCompensation b/ServerPack/HA9_Function/DelCompensation
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/DelCompensation
+++ /dev/null
diff --git a/ServerPack/HA9_Function/DelCompensation.des b/ServerPack/HA9_Function/DelCompensation.des
deleted file mode 100644
index 1c4e690..0000000
--- a/ServerPack/HA9_Function/DelCompensation.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 AA 删除邮件 #tagDelCompensationResult
diff --git a/ServerPack/HA9_Function/DelCompensation.h b/ServerPack/HA9_Function/DelCompensation.h
deleted file mode 100644
index e295bdb..0000000
--- a/ServerPack/HA9_Function/DelCompensation.h
+++ /dev/null
@@ -1,8 +0,0 @@
-//A9 AA 删除邮件通知 #tagGCDelCompensationResult
-struct	tagGCDelCompensationResult
-{
-	tagHead		Head;
-	char		GUID[40];
-	BYTE		Result;  // 删除状态 0  不成功  1成功
-
-};
diff --git a/ServerPack/HA9_Function/FriendSendEnergyInfo b/ServerPack/HA9_Function/FriendSendEnergyInfo
deleted file mode 100644
index 18f8fab..0000000
--- a/ServerPack/HA9_Function/FriendSendEnergyInfo
+++ /dev/null
Binary files differ
diff --git a/ServerPack/HA9_Function/FriendSendEnergyInfo.des b/ServerPack/HA9_Function/FriendSendEnergyInfo.des
deleted file mode 100644
index 58badf8..0000000
--- a/ServerPack/HA9_Function/FriendSendEnergyInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 A9 通知好友互赠精力信息 #tagGCFriendSendEnergyInfo
diff --git a/ServerPack/HA9_Function/FriendSendEnergyInfo.h b/ServerPack/HA9_Function/FriendSendEnergyInfo.h
deleted file mode 100644
index bd2705b..0000000
--- a/ServerPack/HA9_Function/FriendSendEnergyInfo.h
+++ /dev/null
@@ -1,11 +0,0 @@
-// A9 A9 通知好友互赠精力信息 #tagGCFriendSendEnergyInfo
-
-struct	tagGCFriendSendEnergyInfo
-{
-	tagHead		Head;
-	DWORD		DataSize;
-	char		SendData[DataSize];	//赠送记录
-	DWORD		RecvSize;
-	char		RecvData[RecvSize];	//可接收记录
-	DWORD		HasRecvCnt;		//已接收个数
-};
diff --git a/ServerPack/HA9_Function/GCRealmFBHelpInfo b/ServerPack/HA9_Function/GCRealmFBHelpInfo
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/GCRealmFBHelpInfo
+++ /dev/null
diff --git a/ServerPack/HA9_Function/GCRealmFBHelpInfo.des b/ServerPack/HA9_Function/GCRealmFBHelpInfo.des
deleted file mode 100644
index 61b9c25..0000000
--- a/ServerPack/HA9_Function/GCRealmFBHelpInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 08 渡劫副本护法通知 #tagGCRealmFBHelpInfo
diff --git a/ServerPack/HA9_Function/GCRealmFBHelpInfo.h b/ServerPack/HA9_Function/GCRealmFBHelpInfo.h
deleted file mode 100644
index 716217b..0000000
--- a/ServerPack/HA9_Function/GCRealmFBHelpInfo.h
+++ /dev/null
@@ -1,12 +0,0 @@
-// A9 08 渡劫副本护法通知 #tagGCRealmFBHelpInfo
-
-struct	tagGCRealmFBHelpInfo
-{
-	tagHead	Head;
-	char	PlayerName[33];	//玩家名字
-	DWORD	PlayerID;		//玩家ID
-	BYTE	RealmLV;		//玩家境界
-	BYTE	Job;		//玩家职业
-	BYTE	JobRank;		//玩家职业阶级
-	BYTE	AtkAdd;		//获得加成
-};
diff --git a/ServerPack/HA9_Function/GameWorldBossInfo b/ServerPack/HA9_Function/GameWorldBossInfo
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/GameWorldBossInfo
+++ /dev/null
diff --git a/ServerPack/HA9_Function/GameWorldBossInfo.des b/ServerPack/HA9_Function/GameWorldBossInfo.des
deleted file mode 100644
index ab1194d..0000000
--- a/ServerPack/HA9_Function/GameWorldBossInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 02 世界boss相关信息 #tagGCGameWorldBossInfo
diff --git a/ServerPack/HA9_Function/GameWorldBossInfo.h b/ServerPack/HA9_Function/GameWorldBossInfo.h
deleted file mode 100644
index e47d18e..0000000
--- a/ServerPack/HA9_Function/GameWorldBossInfo.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//A9 02 世界boss相关信息 #tagGCGameWorldBossInfo
-
-struct    tagBossInfoObj
-{
-	DWORD		BossID;				// bossID
-	BYTE		IsAlive;				// 是否存活
-	WORD		RecordLen;			// 长度
-	char		KillRecord[RecordLen];		// 最近击杀记录时间玩家名size = RecordLen
-	DWORD		RefreshSecond;			// 刷新倒计时, 秒	
-	DWORD		RefreshCD;			// 刷新总CD时, 秒	
-};
-
-struct    tagGCGameWorldBossInfo
-
-{
-	tagHead		Head;
-	BYTE		BossCnt;			//boss信息个数
-	tagBossInfoObj	BossInfoList[BossCnt];	//boss信息列表
-};
diff --git a/ServerPack/HA9_Function/NotifyEquipDetailInfo b/ServerPack/HA9_Function/NotifyEquipDetailInfo
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/NotifyEquipDetailInfo
+++ /dev/null
diff --git a/ServerPack/HA9_Function/NotifyEquipDetailInfo.des b/ServerPack/HA9_Function/NotifyEquipDetailInfo.des
deleted file mode 100644
index 3c286d7..0000000
--- a/ServerPack/HA9_Function/NotifyEquipDetailInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 05 通知广播装备详细信息 #tagGCNotifyEquipDetailInfo
diff --git a/ServerPack/HA9_Function/NotifyEquipDetailInfo.h b/ServerPack/HA9_Function/NotifyEquipDetailInfo.h
deleted file mode 100644
index 6d4910e..0000000
--- a/ServerPack/HA9_Function/NotifyEquipDetailInfo.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// A9 05 通知广播装备详细信息 #tagGCNotifyEquipDetailInfo
-
-struct	tagGCNotifyEquipClassEquip
-{
-	DWORD		ItemID;
-	BYTE		Star;
-};
-
-struct	tagGCNotifyEquipDetailInfo
-{
-	tagHead		Head;
-	char		ItemGUID[40];
-	DWORD		ItemID;
-	BYTE		Star;		//星级
-	WORD		PlusLV;		//强化等级
-	BYTE		EvolveLV;		//进化等级
-	BYTE		WashLV;		//洗练等级
-	BYTE		WashValueCount;
-	DWORD		WashValueList[WashValueCount];	//洗练值
-	BYTE		StoneIDCount;
-	DWORD		StoneIDList[StoneIDCount];	//宝石
-	BYTE		ClassEquipCount;
-	tagGCNotifyEquipClassEquip		ClassEquipList[ClassEquipCount];	//本境界穿戴的装备
-};
diff --git a/ServerPack/HA9_Function/PYSpeakerContent b/ServerPack/HA9_Function/PYSpeakerContent
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/PYSpeakerContent
+++ /dev/null
diff --git a/ServerPack/HA9_Function/PYSpeakerContent.des b/ServerPack/HA9_Function/PYSpeakerContent.des
deleted file mode 100644
index f44758d..0000000
--- a/ServerPack/HA9_Function/PYSpeakerContent.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 A3 喇叭聊天内容 #tagGCPYSpeakerContent
diff --git a/ServerPack/HA9_Function/PYSpeakerContent.h b/ServerPack/HA9_Function/PYSpeakerContent.h
deleted file mode 100644
index e2b4a43..0000000
--- a/ServerPack/HA9_Function/PYSpeakerContent.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// A9 A3 喇叭聊天内容 #tagGCPYSpeakerContent
-
-struct	tagGCPYSpeakerContent
-{
-	tagHead		Head;
-	BYTE		AccIDLen;
-	char		AccID[AccIDLen];		//size = AccIDLen
-	DWORD		PlayerID;		// 子服的玩家ID,该ID有值时为本服玩家
-	BYTE		NameLen;
-	char		Name[NameLen];		//size = NameLen
-	BYTE		SpeakerType;
-	WORD		TextLen;
-	char		Text[TextLen];		//size = TextLen
-	DWORD		ExtraValue;		//附加值
-	char		Extras[256];		//附加值列表
-};
diff --git a/ServerPack/HA9_Function/QueryCompensationResult b/ServerPack/HA9_Function/QueryCompensationResult
deleted file mode 100644
index 79e4014..0000000
--- a/ServerPack/HA9_Function/QueryCompensationResult
+++ /dev/null
Binary files differ
diff --git a/ServerPack/HA9_Function/QueryCompensationResult.des b/ServerPack/HA9_Function/QueryCompensationResult.des
deleted file mode 100644
index 49c4742..0000000
--- a/ServerPack/HA9_Function/QueryCompensationResult.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 A1 查询玩家补偿结果封包#tagGCQueryCompensationResult
diff --git a/ServerPack/HA9_Function/QueryCompensationResult.h b/ServerPack/HA9_Function/QueryCompensationResult.h
deleted file mode 100644
index 1531812..0000000
--- a/ServerPack/HA9_Function/QueryCompensationResult.h
+++ /dev/null
@@ -1,28 +0,0 @@
-//A9 A1 查询玩家补偿结果封包#tagGCQueryCompensationResult
-struct	tagGCCompensationItem
-{
-	DWORD	ItemID;		//物品ID
-	DWORD	Count;		//数量
-	BYTE	IsBind;		//是否绑定
-	DWORD	UserDataLen;
-	char	UserData[UserDataLen];	//自定义数据	
-};
-struct	tagGCCompensationPack
-{
-	char	GUID[40];	//补偿标识
-	char	CreateTime[30];	//邮件接收时间
-	DWORD	TextLen;		//文字内容长度
-	char	Text[TextLen];	//文字内容
-	BYTE	Count;		//当前补偿物品数
-	BYTE	IsRead;		//已读状态 0 未读取 1已读取
-	DWORD	Gold;		//仙玉
-	DWORD	GoldPaper;	//绑定仙玉
-	DWORD	Silver;		//铜钱
-	tagGCCompensationItem	Items[Count];	//补偿物品信息
-};
-struct	tagGCQueryCompensationResult
-{
-	tagHead		Head;
-	WORD		Count;			//可领取补偿数
-	tagGCCompensationPack	PackList[Count];	//补偿物品信息
-};
diff --git a/ServerPack/HA9_Function/RecommendFriendsInfo b/ServerPack/HA9_Function/RecommendFriendsInfo
deleted file mode 100644
index bc417d3..0000000
--- a/ServerPack/HA9_Function/RecommendFriendsInfo
+++ /dev/null
Binary files differ
diff --git a/ServerPack/HA9_Function/RecommendFriendsInfo.des b/ServerPack/HA9_Function/RecommendFriendsInfo.des
deleted file mode 100644
index 31d87d9..0000000
--- a/ServerPack/HA9_Function/RecommendFriendsInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 A8 通知可添加的好友信息 #tagGCRecommendFriendsInfo
diff --git a/ServerPack/HA9_Function/RecommendFriendsInfo.h b/ServerPack/HA9_Function/RecommendFriendsInfo.h
deleted file mode 100644
index c4a18a5..0000000
--- a/ServerPack/HA9_Function/RecommendFriendsInfo.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// A9 A8 通知可添加的好友信息 #tagGCRecommendFriendsInfo
-
-struct	tagRecommendFriendsData
-{
-	DWORD		ID;
-	char		Name[33];
-	DWORD		LV;		//等级
-	BYTE		Job;
-	WORD		RealmLV;		//境界	
-	DWORD		Face;		//基本脸型
-	DWORD		FacePic;		//头像框
-};
-
-struct	tagGCRecommendFriendsInfo
-{
-	tagHead		Head;
-	BYTE		Cnt;		//信息数
-	tagRecommendFriendsData	FriendsList[Cnt];		//成员信息
-};
diff --git a/ServerPack/HA9_Function/StoreServerBuyCntInfo b/ServerPack/HA9_Function/StoreServerBuyCntInfo
deleted file mode 100644
index e69de29..0000000
--- a/ServerPack/HA9_Function/StoreServerBuyCntInfo
+++ /dev/null
diff --git a/ServerPack/HA9_Function/StoreServerBuyCntInfo.des b/ServerPack/HA9_Function/StoreServerBuyCntInfo.des
deleted file mode 100644
index a7b8905..0000000
--- a/ServerPack/HA9_Function/StoreServerBuyCntInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A9 06 商城全服购买次数通知 #tagGCStoreServerBuyCntInfo
diff --git a/ServerPack/HA9_Function/StoreServerBuyCntInfo.h b/ServerPack/HA9_Function/StoreServerBuyCntInfo.h
deleted file mode 100644
index 5753e11..0000000
--- a/ServerPack/HA9_Function/StoreServerBuyCntInfo.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// A9 06 商城全服购买次数通知 #tagGCStoreServerBuyCntInfo
-
-struct	tagGCStoreServerBuyCnt
-{
-	DWORD	GoodsID;	//商品标识
-	DWORD	BuyCnt;	//购买次数
-};
-struct	tagGCStoreServerBuyCntInfo
-{
-	tagHead		Head;
-	WORD		Count;			//数量
-	tagGCStoreServerBuyCnt	InfoList[Count];	//次数信息
-};

--
Gitblit v1.8.0