• 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!

Lua auto free promotion with level 20

Try something like:
Code:
function onAdvance(cid, oldLevel, newLevel)
if getPlayerLevel(cid) == 20 then
-- put here promotion function
end
return true
end

I really dont remember the functions in old TFS, but i think you gonna find it^^
PD: You have to put the script in creaturescripts.
 
Back
Top