少年修仙传服务端代码子仓库
hxp
2023-10-09 68723cb6275683b1ede9f7a007f677009151a38d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//03 02 Íæ¼ÒÁìÈ¡²¹³¥½á¹û#tagGMRequestCompensationResult
 
struct    tagGMCompensationItem
{
    DWORD        ItemID;        //ÎïÆ·ID
    DWORD        Count;        //ÊýÁ¿
    BYTE        IsBind;        //ÊÇ·ñ°ó¶¨
    DWORD        UserDataLen;
    char        UserData[UserDataLen];    //×Ô¶¨ÒåÊý¾Ý
};
struct    tagGMRequestCompensationResult
{
    tagHead        Head;
    DWORD        PlayerID;        //Íæ¼ÒID
    BYTE        CompensationType;    //²¹³¥ÀàÐÍ 0 È«·þ 1 ¸öÈË
    char        GUID[40];    //¶ÔÓ¦µÄ²¹³¥ID
    char    CreateTime[30];    //Óʼþ½ÓÊÕʱ¼ä
    DWORD    TextLen;        //ÎÄ×ÖÄÚÈݳ¤¶È
    char    Text[TextLen];    //ÎÄ×ÖÄÚÈÝ
    BYTE    Count;        //µ±Ç°²¹³¥ÎïÆ·Êý
    DWORD    Gold;        //ÏÉÓñ
    DWORD    GoldPaper;    //°ó¶¨ÏÉÓñ
    DWORD    Silver;        //Í­Ç®
    BYTE    MoneySource;    //»õ±ÒÀ´Ô´
    tagGMCompensationItem    Items[Count];    //²¹³¥ÎïÆ·ÐÅÏ¢
};