hxp
2025-05-28 97c6c0b09c1807b4a786cb89c7cbc3940f92d99d
92 【主界面】主线任务-服务端
3个文件已添加
17 ■■■■■ 已修改文件
ServerPack/MapServerPack/HB1_Role/TaskInfo 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HB1_Role/TaskInfo.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HB1_Role/TaskInfo.h 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HB1_Role/TaskInfo
ServerPack/MapServerPack/HB1_Role/TaskInfo.des
New file
@@ -0,0 +1 @@
B1 10 当前任务信息 #tagMCTaskInfo
ServerPack/MapServerPack/HB1_Role/TaskInfo.h
New file
@@ -0,0 +1,16 @@
// B1 10 当前任务信息 #tagMCTaskInfo
struct    tagMCTask
{
    BYTE        TaskGroup;    // 任务组,0-主线
    DWORD        TaskID;        // 当前任务ID,可能为0,表示该分组暂时没有任务
    DWORD        CurValue;        // 当前进度值
    BYTE        State;        // 任务状态 1-进行中 2-可领取
};
struct    tagMCTaskInfo
{
    tagHead        Head;
    BYTE        TaskCount;
    tagMCTask    TaskList[TaskCount];
};