hxp
2025-08-25 b2f58170899e8fecbc54ff228d46efee5add3de2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// B0 20 Ä¤°ÝÐÅÏ¢Áбí #tagGCWorshipInfoList
 
struct    tagGCWorshipInfo
{
    DWORD        PlayerID;        // Ä¿±êÍæ¼ÒID
    BYTE        WorshipType;    // Ä¤°ÝÀàÐÍ
    DWORD        WorshipValue;    // Ä¤°ÝÀàÐͶÔÓ¦µÄ¹¦ÄÜÖµ£¬ÈçÃû´Î»òÆäËû£¬ÓɾßÌåĤ°ÝÀàÐͶ¨Òå¶ÔÓ¦Öµº¬Òå
    WORD        InfoLen;
    char        PlayerInfo[InfoLen];    // Íæ¼ÒÐÅÏ¢{k:v, ...}
};
 
struct    tagGCWorshipInfoList
{
    tagHead        Head;
    BYTE        WorshipCount;
    tagGCWorshipInfo        WorshipInfoList[WorshipCount];
};