少年修仙传服务端代码子仓库
hxp
2024-08-28 c1bac40b55d9a0d7c7fc854a4076ac4f178fc7bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// A9 28 Ïɹ¬ÏÉÃûÂ¼Íæ¼ÒÐÅÏ¢ #tagGCXiangongRecPlayerInfo
 
struct    tagGCXiangongRecPlayer
{
    DWORD        AddTime;        // Ð½úʱ¼ä´Á
    DWORD        ServerID;
    DWORD        PlayerID;
    BYTE        NameLen;
    char        Name[NameLen];    // Íæ¼ÒÃû£¬size = NameLen
    WORD        LV;        // Íæ¼ÒµÈ¼¶
    BYTE        Job;        // Íæ¼ÒÖ°Òµ
    WORD        RealmLV;         // Íæ¼Ò¾³½ç
};
 
struct    tagGCXiangongRecPlayerInfo
{
    tagHead        Head;
    WORD        XiangongID;    // Ïɹ¬ID
    BYTE        RecPlayerCount;
    tagGCXiangongRecPlayer    RecPlayerList[RecPlayerCount];
};