Alterando EXP da base DxP e colocando EXP Premium. Em creaturescripts\scripts\player\PokeDeath.lua procure a parte do código abaixo e substitua pela seguinte (não substituir todo o arquivo, apenas a function citada abaixo).
function playerAddExp(cid, exp)
if not isCreature(cid) then return true end
if isInPartyAndSharedExperience(cid) then
local partyPlayers = getPartyMembers(getPlayerParty(cid))
local partyExp = math.ceil(exp / #partyPlayers)
for i = 1, #partyPlayers do
if isPlayer(partyPlayers) then
doPlayerAddExp(partyPlayers, partyExp * 10)
doSendAnimatedText(getThingPos(partyPlayers), partyExp * 10, 215)
end
end
return true
end
if isPremium(cid) then
doPlayerAddExp(cid, exp * 20) -- Multiplicador 20 da exp de jogadores PREMIUM
doSendAnimatedText(getThingPos(cid), exp * 20, 215) -- alterar este igualmente pois é o texto que aparece ao ganhar xp
else
doPlayerAddExp(cid, exp * 10) -- Multiplicador 10 da exp de jogadores FREE
doSendAnimatedText(getThingPos(cid), exp * 10, 215) -- alterar este igualmente pois é o texto que aparece ao ganhar xp
end
end