23 lines
598 B
Lua
23 lines
598 B
Lua
![]() |
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
|