我就在laser大神的代码上改了一点点。
我2.81版里的代码:
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then -- 剑
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Sword])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Sword then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
if mas1 == const.Master then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*8)
end
if mas1 == const.GM then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*9)
end
if mas1 <= const.Expert then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*5)
end
end
end
end
end
---------------------------------
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then -- 匕首
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Dagger])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Dagger then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
if mas1 == const.Master then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*8)
end
if mas1 == const.GM then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*9)
end
if mas1 <= const.Expert then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*5)
end
end
end
end
end
--------------------------------------------------
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then -- 斧
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Axe])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Axe then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
if mas1 == const.Master then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*8)
end
if mas1 == const.GM then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*9)
end
if mas1 <= const.Expert then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*5)
end
end
end
end
end
-------------------------------------------------------------------------------
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then -- 棍棒
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Staff])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
local sk2, mas2 = SplitSkill(t.Player.Skills[const.Skills.Unarmed])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Staff then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
if mas1 == const.Master then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*8)+math.max(0,(sk2-10)*2)
end
if mas1 == const.GM then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*9)+math.max(0,(sk2-10)*2)
end
if mas1 <= const.Expert then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*5)+math.max(0,(sk2-10)*2)
end
end
end
end
end
-------------------------------------------------------------------------------
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then -- 矛
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Spear])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Spear then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
if mas1 == const.Master then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*8)
end
if mas1 == const.GM then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*9)
end
if mas1 <= const.Expert then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*5)
end
end
end
end
end
-------------------------------------------------------------------------------
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then --锤棍
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Mace])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Mace then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
if mas1 == const.Master then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*8)
end
if mas1 == const.GM then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*9)
end
if mas1 <= const.Expert then
t.Result = t.Result + math.max(0,(mi-300)*2)+math.max(0,(sk-10)*15)+math.max(0,(sk1-10)*5)
end
end
end
end
end
-------------------------------------------------------------------------------
function events.CalcStatBonusBySkills(t)
if t.Result ~= 0 and t.Stat == const.Stats.MeleeDamageBase then --弓
local sk, mas = SplitSkill(t.Player.Skills[const.Skills.Bow])
local sk1, mas1 = SplitSkill(t.Player.Skills[const.Skills.Armsmaster])
if mas == const.GM then -----const.Novice是基础,const.Expert是专家,const.Master是大师,const.GM是宗师
local it = t.Player:GetActiveItem(const.ItemSlot.MainHand)
if it and it:T().Skill == const.Skills.Bow then
local le= t.Player:GetLevel()
local mi= t.Player:GetMight()
local sp= t.Player:GetSpeed()
local en= t.Player:GetBaseEndurance()
local ac= t.Player:GetBaseAccuracy()
local lu= t.Player:GetBaseLuck()
local nt= t.Player:GetBaseIntellect()
local pe= t.Player:GetBasePersonality()
t.Result = t.Result +math.max(0,(sk-10)*3)
end
end
end
end