8374 【后端】【主干】通知客户端攻击封包增加专精技能(技能升级表增加专精技能编号字段)
2个文件已修改
4 ■■■■ 已修改文件
PySysDB/PySysDBPY.h 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
PySysDB/PySysDBPY.h
@@ -1971,6 +1971,7 @@
struct tagSkillElement
{
    DWORD        _ElementSkillID;    //专精技能ID
    BYTE        ElementSkillNum;    //专精技能编号
    DWORD        MainSkillID;    //主技能ID
    DWORD        NeedLV;    //选择需要等级
};
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -1533,6 +1533,7 @@
                "SkillElement":(
                        ("DWORD", "ElementSkillID", 1),
                        ("BYTE", "ElementSkillNum", 0),
                        ("DWORD", "MainSkillID", 0),
                        ("DWORD", "NeedLV", 0),
                        ),
@@ -4729,11 +4730,13 @@
    
    def __init__(self):
        self.ElementSkillID = 0
        self.ElementSkillNum = 0
        self.MainSkillID = 0
        self.NeedLV = 0
        return
        
    def GetElementSkillID(self): return self.ElementSkillID # 专精技能ID
    def GetElementSkillNum(self): return self.ElementSkillNum # 专精技能编号
    def GetMainSkillID(self): return self.MainSkillID # 主技能ID
    def GetNeedLV(self): return self.NeedLV # 选择需要等级