少年修仙传客户端代码仓库
client_Wu Xijin
2019-05-21 701af91dc61e0c57e5f4ce4916ded335736bbced
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
6个文件已修改
27 ■■■■ 已修改文件
Core/NetworkPackage/DTCFile/ServerPack/H06_PlayerVsNPC/DTC0614_tagUseSkillPos.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GA_NpcClientFightBoss.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GA_NpcClientFightNorm.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GA_NpcFightBoss.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GA_NpcFightNorm.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Fight/GameActor/GA_Pet.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Core/NetworkPackage/DTCFile/ServerPack/H06_PlayerVsNPC/DTC0614_tagUseSkillPos.cs
@@ -283,7 +283,7 @@
                            ObjID = _sTarget.ObjID,
                            clientInstID = GAMgr.Instance.GetCIDBySID(_cTarget.ServerInstID),
                            ObjType = _sTarget.ObjType,
                            HurtHP = _sTarget.HurtHP,
                            HurtHP = (uint)(_cTarget.ActorInfo.RealHp - (_sTarget.CurHP + _sTarget.CurHPEx * GActorInfo.FullHp)),
                            CurHP = _sTarget.CurHP,
                            AttackType = _sTarget.AttackType
                        };
@@ -721,7 +721,7 @@
                    ObjID = _sTarget.ObjID,
                    clientInstID = GAMgr.Instance.GetCIDBySID(_cTarget.ServerInstID),
                    ObjType = _sTarget.ObjType,
                    HurtHP = _sTarget.HurtHP,
                    HurtHP = (uint)(_cTarget.ActorInfo.RealHp - (_sTarget.CurHP + _sTarget.CurHPEx * GActorInfo.FullHp)),
                    CurHP = _sTarget.CurHP,
                    AttackType = _sTarget.AttackType
                };
Fight/GameActor/GA_NpcClientFightBoss.cs
@@ -45,6 +45,11 @@
    protected override sealed void UpdateTimeDialogueBubble()
    {
        if (!MP_Stun)
        {
            return;
        }
        // 瞎BB逻辑
        if (Time.realtimeSinceStartup - m_LastTalkTime > 5)
        {
Fight/GameActor/GA_NpcClientFightNorm.cs
@@ -366,6 +366,10 @@
    protected override void UpdateTimeDialogueBubble()
    {
        if (!MP_Name)
        {
            return;
        }
        // 瞎BB逻辑
        if (Time.realtimeSinceStartup - m_LastTalkTime > 5)
        {
Fight/GameActor/GA_NpcFightBoss.cs
@@ -64,6 +64,10 @@
    protected override sealed void UpdateTimeDialogueBubble()
    {
        if (!MP_Stun)
        {
            return;
        }
        // 瞎BB逻辑
        if (Time.realtimeSinceStartup - m_LastTalkTime > 5)
        {
Fight/GameActor/GA_NpcFightNorm.cs
@@ -258,6 +258,10 @@
    protected override void UpdateTimeDialogueBubble()
    {
        if (!MP_Name)
        {
            return;
        }
        // 瞎BB逻辑
        if (Time.realtimeSinceStartup - m_LastTalkTime > 5)
        {
Fight/GameActor/GA_Pet.cs
@@ -146,6 +146,10 @@
    protected override void UpdateTimeDialogueBubble()
    {
        if (!MP_Name)
        {
            return;
        }
        // 瞎BB逻辑
        if (Time.realtimeSinceStartup - m_LastTalkTime > 5)
        {
@@ -179,7 +183,7 @@
            m_LastTalkTime = Time.realtimeSinceStartup;
        }
    }
    public sealed override bool CanAtked()
    {
        return false;