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,"소痢뒈暠")
|
|
|
|
if char.getInt(charindex,"소痢뒈貫")>0 and char.getInt(charindex,"소痢뒈貫")~=2 then
|
|
if char.getChar(charindex, "소痢") == other.getString(family.ShowPointListArray(0), "|", 6) then
|
|
exp = math.floor(exp*1.2)
|
|
elseif char.getChar(charindex, "소痢") == 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
|