提交 | 用户 | 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
|
|
17 |
DWORD TextLen; //文字内容长度
|
|
18 |
char Text[TextLen]; //文字内容
|
|
19 |
BYTE Count; //当前补偿物品数
|
|
20 |
DWORD Gold; //仙玉
|
|
21 |
DWORD GoldPaper; //绑定仙玉
|
|
22 |
DWORD Silver; //ͭǮ
|
|
23 |
tagGMCompensationItem Items[Count]; //补偿物品信息
|
|
24 |
};
|