少年修仙传服务端代码子仓库
hxp
2023-01-08 673688a605a1c5da55d60863846a984c53600a5a
9765 【BT8】【后端】神通
12个文件已添加
42 ■■■■■ 已修改文件
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongLVUp 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongLVUp.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongLVUp.h 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongSkillSet 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongSkillSet.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongSkillSet.h 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HA3_Function/ShentongLVInfo 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HA3_Function/ShentongLVInfo.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HA3_Function/ShentongLVInfo.h 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HA3_Function/ShentongSkillInfo 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HA3_Function/ShentongSkillInfo.des 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPack/MapServerPack/HA3_Function/ShentongSkillInfo.h 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongLVUp
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongLVUp.des
New file
@@ -0,0 +1 @@
B2 19 神通升级 #tagCMShentongLVUp
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongLVUp.h
New file
@@ -0,0 +1,7 @@
// B2 19 神通升级 #tagCMShentongLVUp
struct    tagCMShentongLVUp
{
    tagHead         Head;
    BYTE        ShentongID;
};
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongSkillSet
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongSkillSet.des
New file
@@ -0,0 +1 @@
B2 20 神通技能设置 #tagCMShentongSkillSet
ClientPack/ClientToMapServer/CB2_NewFunction/ShentongSkillSet.h
New file
@@ -0,0 +1,8 @@
// B2 20 神通技能设置 #tagCMShentongSkillSet
struct    tagCMShentongSkillSet
{
    tagHead         Head;
    BYTE        Count;
    DWORD        SkillIDList[Count];
};
ServerPack/MapServerPack/HA3_Function/ShentongLVInfo
ServerPack/MapServerPack/HA3_Function/ShentongLVInfo.des
New file
@@ -0,0 +1 @@
A3 C8 神通等级信息 #tagMCShentongLVInfo
ServerPack/MapServerPack/HA3_Function/ShentongLVInfo.h
New file
@@ -0,0 +1,15 @@
// A3 C8 神通等级信息 #tagMCShentongLVInfo
struct    tagMCShentongLV
{
    BYTE    ShentongID;
    BYTE    ClassLV;
    BYTE    LV;
};
struct    tagMCShentongLVInfo
{
    tagHead        Head;
    BYTE        Count;
    tagMCShentongLV    ShentongLVList[Count];
};
ServerPack/MapServerPack/HA3_Function/ShentongSkillInfo
ServerPack/MapServerPack/HA3_Function/ShentongSkillInfo.des
New file
@@ -0,0 +1 @@
A3 C9 神通技能设置信息 #tagMCShentongSkillInfo
ServerPack/MapServerPack/HA3_Function/ShentongSkillInfo.h
New file
@@ -0,0 +1,8 @@
// A3 C9 神通技能设置信息 #tagMCShentongSkillInfo
struct    tagMCShentongSkillInfo
{
    tagHead        Head;
    BYTE        Count;
    DWORD        SkillIDList[Count];
};