魔法门吧 关注:26,316贴子:411,749

回复:整合版休闲脚本--增加物理系伤害,同时杀死怪物有额外奖励

取消只看楼主收藏回复

尝试在网上找了些方法,终于搞定弓箭面板有伤害,实际上没伤害的问题了。大家也可以试下。
function events.CalcStatBonusBySkills(t)
if t.Stat == const.Stats.RangedDamageBase then
local sk, mas = SplitSkill(t.Player:GetSkill(const.Skills.Bow)) -- 远程
if mas >= const.Novice then
local it = t.Player:GetActiveItem(const.ItemSlot.Bow)
if it and it:T().Skill == const.Skills.Bow then
local le= t.Player:GetLevel()
t.Result = t.Result + 10*sk*mas*le/2
end
end
end
end
function events.ItemAdditionalDamage(t)
if Game.ItemsTxt[t.Item.Number].Skill == const.Skills.Bow then
local Player = Game.Party[Game.CurrentPlayer]
local sk, mas = SplitSkill(t.Player:GetSkill(const.Skills.Bow))
if mas >= const.Novice then
local le= t.Player:GetLevel()
t.Result = t.Result + t.Result + 10*sk*mas*le/2
end
end
end


IP属地:广东36楼2023-07-17 23:00
收起回复
    更新下昨晚的错误,用下面的就可以了哈。


    IP属地:广东39楼2023-07-18 22:27
    回复
      -- ---------------------------------
      function events.CalcStatBonusBySkills(t)
      if t.Stat == const.Stats.RangedDamageBase then
      local sk, mas = SplitSkill(t.Player:GetSkill(const.Skills.Bow)) -- 远程
      if mas >= const.Novice then
      local it = t.Player:GetActiveItem(const.ItemSlot.Bow)
      if it and it:T().Skill == const.Skills.Bow then
      local le= t.Player:GetLevel()
      t.Result = t.Result + sk*mas*le/2
      end
      end
      end
      end
      function events.ItemAdditionalDamage(t)
      if Game.ItemsTxt[t.Item.Number].Skill == const.Skills.Bow then
      local sk, mas = SplitSkill(t.Player:GetSkill(const.Skills.Bow))
      if mas >= const.Novice then
      local le= t.Player:GetLevel()
      t.Result = t.Result + sk*mas*le/2
      end
      end
      end
      ------------------------


      IP属地:广东40楼2023-07-18 22:27
      收起回复