so prescisa modificar o creaturescripts para nao ganhar os points:
local config = {
repeatAfterDeath = false,
points = 5,
storage = 14005,
vocations = {1,2,3}, -- IDs das vocation que poderao ganhar points.
}
function onAdvance(cid, skill, oldlevel, newlevel)
if skill ~= SKILL__LEVEL or (not config.repeatAfterDeath and getPlayerStorageValue(cid, config.storage) >= newlevel) then return true end
if not isInArray(config.vocations, getPlayerVocation(cid)) then return true end
doShowTextDialog(cid, 0, "Voce recebeu 5 points. \n Va ao dumbledore para trocar seus pontos.")
addPoints(cid, config.points)
setPlayerStorageValue(cid, config.storage, newlevel)
return true
end