hxp
2025-05-16 0dbe621c75e43d7a8cd29586fb0ecb5105773bcf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// A9 22 ¾º¼¼³¡Æ¥ÅäÍæ¼ÒÁбí #tagGCArenaMatchList
 
struct    tagGCArenaMatchInfo
{
    DWORD        PlayerID;        //Ä¿±êÍæ¼ÒID£¬Ð¡ÓÚ10000Ϊ»úÆ÷ÈËID
    char        PlayerName[33];
    BYTE        Job;
    WORD        LV;        //µÈ¼¶
    WORD        RealmLV;        //¾³½ç£¬»úÆ÷È˶Á¾³½ç±íÈ¡µÈ¼¶¶ÔÓ¦¾³½ç
    DWORD        FightPower;    //Õ½Á¦ÇóÓàÒÚ²¿·Ö£¬»úÆ÷È˶ÁµÈ¼¶±íÈ¡µÈ¼¶¶ÔÓ¦Õ½Á¦
    DWORD        FightPowerEx;    //Õ½Á¦Õû³ýÒÚ²¿·Ö£¬»úÆ÷È˶ÁµÈ¼¶±íÈ¡µÈ¼¶¶ÔÓ¦Õ½Á¦
    DWORD        Score;    //»ý·Ö
    DWORD        Face;        //»ù±¾Á³ÐÍ
    DWORD        FacePic;        //Í·Ïñ¿ò
};
 
struct    tagGCArenaMatchList
{
    tagHead        Head;
    BYTE        MatchCount;
    tagGCArenaMatchInfo    MatchList[MatchCount];    // Æ¥ÅäÁбí
};