• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[OnAdvance] One Question

Code:
function onAdvance(cid, skill, oldlevel, newlevel)
if skill == SKILL__LEVEL then
local hp = getCreatureMaxHealth(cid)
local mana = getCreatureMaxMana(cid)
doCreatureAddHealth(cid, hp)
doCreatureAddMana(cid, mana)
end
end
tfs 0.3 ;)
 
Back
Top