少年修仙传服务端代码子仓库
6647 【2.0】【开发】查看聊天信息、广播信息和掉落记录里的装备需求(增加查询广播装备详细信息封包)
6个文件已添加
33 ■■■■■ 已修改文件
ClientPack/ClientToGameServer/CA9_Function/QueryNotifyEquipDetailInfo 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToGameServer/CA9_Function/QueryNotifyEquipDetailInfo.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToGameServer/CA9_Function/QueryNotifyEquipDetailInfo.h 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/GameServerPack/HA9_Function/NotifyEquipDetailInfo 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/GameServerPack/HA9_Function/NotifyEquipDetailInfo.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/GameServerPack/HA9_Function/NotifyEquipDetailInfo.h 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToGameServer/CA9_Function/QueryNotifyEquipDetailInfo
ClientPack/ClientToGameServer/CA9_Function/QueryNotifyEquipDetailInfo.des
New file
@@ -0,0 +1 @@
A9 05 查询广播装备详细信息 #tagCGQueryNotifyEquipDetailInfo
ClientPack/ClientToGameServer/CA9_Function/QueryNotifyEquipDetailInfo.h
New file
@@ -0,0 +1,7 @@
// A9 05 查询广播装备详细信息 #tagCGQueryNotifyEquipDetailInfo
struct    tagCGQueryNotifyEquipDetailInfo
{
    tagHead        Head;
    char        ItemGUID[40];
};
ServerPack/GameServerPack/HA9_Function/NotifyEquipDetailInfo
ServerPack/GameServerPack/HA9_Function/NotifyEquipDetailInfo.des
New file
@@ -0,0 +1 @@
A9 05 通知广播装备详细信息 #tagGCNotifyEquipDetailInfo
ServerPack/GameServerPack/HA9_Function/NotifyEquipDetailInfo.h
New file
@@ -0,0 +1,24 @@
// 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        WahsValueCount;
    WORD        WashValueList[WahsValueCount];    //洗练值
    BYTE        StoneIDCount;
    DWORD        StoneIDList[StoneIDCount];    //宝石
    BYTE        ClassEquipCount;
    tagGCNotifyEquipClassEquip        ClassEquipList[ClassEquipCount];    //本境界穿戴的装备
};