Uhm, meiner meinung, würde ich es in der EventFunc.lua einstellen.
Öffne EventFunc.lua.
Such nach SetExpFactor, dann solltest du diese hier sehen
Code:
-- ??? ??
function SetExpFactor( fExpFactor )
local nEventId = table.getn(tEvent)
tEvent[nEventId].fExpFactor = fExpFactor
end
function GetExpFactor()
local tList = GetEventList()
[COLOR="Red"]local fExpFactor = 20 [/COLOR]
for i in pairs(tList) do
if( tEvent[tList[i]].fExpFactor ~= nil ) then
fExpFactor = fExpFactor * tEvent[tList[i]].fExpFactor
end
end
return fExpFactor
end
Hier änderst du beliebig dein Exp Rates. :')
Und in der Event.lua, kannst du sowie beim Vorposter, die Exp verstärken, mit
SetExpFactor( 2 )