hxp
2025-10-11 4453686b87db63f6f0864ee10b4a542b5e723cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// B3 19 ÷ÈÁ¦¹±Ï×°ñ #tagGCCharmOfferBillboardDataList
 
struct    tagGCCharmOfferBillboardData
{
    DWORD        OrderIndex;    //Ãû´ÎË÷Òý£¬0´ú±íµÚÒ»Ãû
    DWORD        PlayerID;        // Íæ¼ÒID - ¹±Ï×Õß
    BYTE        NameLen;
    char        PlayerName[NameLen];
    DWORD        CharmValue;    //¹±Ï×÷ÈÁ¦Öµ
};
 
struct    tagGCCharmOfferBillboardDataList
{
    tagHead        Head;
    DWORD        PlayerID;        // ÷ÈÁ¦Íæ¼ÒID
    BYTE        QueryType;    // ²é¿´ÀàÐÍ£º 1-×ܰñ£¬2-Öܰñ£¬3-ÈÕ°ñ
    BYTE        DataCount;
    tagGCCharmOfferBillboardData    OfferBillboardDataList[DataCount];
};