少年修仙传服务端代码子仓库
hxp
2019-03-25 dcfaeda4c2637e4d2f2db0c4816f80524aacaf29
6385 【后端】【2.0】五行灵根开发
6个文件已添加
21 ■■■■■ 已修改文件
ClientPack/ClientToMapServer/CB2_NewFunction/AddPoint 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/AddPoint.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/AddPoint.h 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HB1_Role/RolePointInfo 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HB1_Role/RolePointInfo.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HB1_Role/RolePointInfo.h 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/AddPoint
ClientPack/ClientToMapServer/CB2_NewFunction/AddPoint.des
New file
@@ -0,0 +1 @@
B2 06 玩家加点 #tagCMAddPoint
ClientPack/ClientToMapServer/CB2_NewFunction/AddPoint.h
New file
@@ -0,0 +1,9 @@
// B2 06 玩家加点 #tagCMAddPoint
struct    tagCMAddPoint
{
    tagHead         Head;
    BYTE        PointAttrIDCount;    // 加点属性ID个数
    BYTE        PointAttrIDList[PointAttrIDCount];    // 加点属性ID列表
    WORD        PointValueList[PointAttrIDCount];    // 加点属性ID对应的点数列表
};
ServerPack/MapServerPack/HB1_Role/RolePointInfo
ServerPack/MapServerPack/HB1_Role/RolePointInfo.des
New file
@@ -0,0 +1 @@
B1 07 玩家点数信息 #tagMCRolePointInfo
ServerPack/MapServerPack/HB1_Role/RolePointInfo.h
New file
@@ -0,0 +1,10 @@
// B1 07 玩家点数信息 #tagMCRolePointInfo
struct    tagMCRolePointInfo
{
    tagHead         Head;
    WORD        FreePointTotal;    // 自由属性点总数
    BYTE        PointAttrIDCount;    // 点类型个数
    BYTE        PointAttrIDList[PointAttrIDCount];    // 点类型列表
    WORD        PointValueList[PointAttrIDCount];    // 点类型对应的点数列表
};