提交 | 用户 | age
|
ed7b73
|
1 |
//A9 A1 查询玩家补偿结果封包#tagGCQueryCompensationResult
|
H |
2 |
struct tagGCCompensationItem
|
|
3 |
{
|
|
4 |
DWORD ItemID; //物品ID
|
|
5 |
DWORD Count; //数量
|
|
6 |
BYTE IsBind; //是否绑定
|
|
7 |
DWORD UserDataLen;
|
|
8 |
char UserData[UserDataLen]; //自定义数据
|
|
9 |
};
|
|
10 |
struct tagGCCompensationPack
|
|
11 |
{
|
|
12 |
char GUID[40]; //补偿标识
|
|
13 |
char CreateTime[30]; //邮件接收时间
|
|
14 |
DWORD TextLen; //文字内容长度
|
|
15 |
char Text[TextLen]; //文字内容
|
|
16 |
BYTE Count; //当前补偿物品数
|
|
17 |
BYTE IsRead; //已读状态 0 未读取 1已读取
|
|
18 |
DWORD Gold; //仙玉
|
|
19 |
DWORD GoldPaper; //绑定仙玉
|
|
20 |
DWORD Silver; //ͭǮ
|
|
21 |
tagGCCompensationItem Items[Count]; //补偿物品信息
|
|
22 |
};
|
|
23 |
struct tagGCQueryCompensationResult
|
|
24 |
{
|
|
25 |
tagHead Head;
|
|
26 |
WORD Count; //可领取补偿数
|
|
27 |
tagGCCompensationPack PackList[Count]; //补偿物品信息
|
|
28 |
};
|