stoneage8.5/服务器端lua文件/ablua/freemodeexp.lua

23 lines
598 B
Lua
Raw Normal View History

2020-06-22 17:49:02 +08:00
function FreeModeExp( charindex, getexp, modexp )
local exp = getexp*config.getBattleexp() + ((getexp*modexp*2)/100)
local fmmap = char.getWorkInt(charindex,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼ")
if char.getInt(charindex,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ")>0 and char.getInt(charindex,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ")~=2 then
if char.getChar(charindex, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>") == other.getString(family.ShowPointListArray(0), "|", 6) then
exp = math.floor(exp*1.2)
elseif char.getChar(charindex, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>") == other.getString(family.ShowPointListArray(1), "|", 6) then
exp = math.floor(exp*1.2)
end
end
return exp
end
function data()
end
function main()
data()
end