少年修仙传服务端代码子仓库
提交 | 用户 | age
edbd12 1 // AA 0B 周狂欢玩家活动信息 #tagMCWeekPartyPlayerInfo
X 2
533a23 3 struct    tagMCWeekPartyTaskInfo
edbd12 4 {
X 5     WORD        ActionType;    // 活动类别
6     WORD        CurTimes;    //已完成次数
7     WORD        GotTimes;    //已领取次数
8 };
9
b8da44 10 struct    tagMCWeekPartyDayPlayerInfo
533a23 11 {
X 12     DWORD        DayIndex;    //第X天
13     DWORD        Point;    //积分
14     DWORD        AwardRecord;    //积分领奖记录
15     DWORD        ACount;    //任务条目数
16     tagMCWeekPartyTaskInfo        TaskList[ACount];    //活动完成次数信息
17 };
18
edbd12 19 struct    tagMCWeekPartyPlayerInfo
X 20 {
21     tagHead        Head;
22     BYTE        Count;
ba6071 23     tagMCWeekPartyDayPlayerInfo        DayInfoList[Count];    //活动完成次数信息
edbd12 24 };