少年修仙传服务端代码子仓库
提交 | 用户 | age
ed7b73 1 //03 02 玩家领取补偿结果#tagGMRequestCompensationResult
H 2
3 struct    tagGMCompensationItem
4 {
5     DWORD        ItemID;        //物品ID
6     DWORD        Count;        //数量
7     BYTE        IsBind;        //是否绑定
8     DWORD        UserDataLen;
9     char        UserData[UserDataLen];    //自定义数据
10 };
11 struct    tagGMRequestCompensationResult
12 {
13     tagHead        Head;
14     DWORD        PlayerID;        //玩家ID
15     BYTE        CompensationType;    //补偿类型 0 全服 1 个人
16     char        GUID[40];    //对应的补偿ID
4ecd4e 17     char    CreateTime[30];    //邮件接收时间
ed7b73 18     DWORD    TextLen;        //文字内容长度
H 19     char    Text[TextLen];    //文字内容
20     BYTE    Count;        //当前补偿物品数
21     DWORD    Gold;        //仙玉
22     DWORD    GoldPaper;    //绑定仙玉
23     DWORD    Silver;        //ͭǮ
98253f 24     BYTE    MoneySource;    //货币来源
ed7b73 25     tagGMCompensationItem    Items[Count];    //补偿物品信息
H 26 };