尝试在网上找了些方法,终于搞定弓箭面板有伤害,实际上没伤害的问题了。大家也可以试下。
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
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