少年修仙传服务端代码子仓库
hxp
2019-06-28 9f8b9531503668a2c6dd272b939a2ba8ebc46f18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// B9 08 ÍƼö×é¶ÓµÄ¸½½üÍæ¼ÒÐÅÏ¢ #tagGCRecommendNearbyPlayerList
 
struct    tagGCRecommendNearbyPlayer
{
    DWORD        PlayerID;
    BYTE        NameLen;
    char        Name[NameLen];    // Íæ¼ÒÃû£¬size = NameLen
    WORD        LV;        // Íæ¼ÒµÈ¼¶
    BYTE        Job;        // Íæ¼ÒÖ°Òµ
    BYTE        JobLevel;        // Íæ¼ÒÖ°Òµ½×¼¶
    WORD        RealmLV;         // Íæ¼Ò¾³½çµÈ¼¶
};
 
struct    tagGCRecommendNearbyPlayerList
{
    tagHead        Head;
    BYTE        PlayerCount;
    tagGCRecommendNearbyPlayer        PlayerList[PlayerCount];    // ÍƼöÍæ¼ÒÁбí
};