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

Free account-remove promotion

agomez

Member
Joined
Jan 28, 2009
Messages
211
Reaction score
5
I've been trying to edit this script, it does when a player have 0 premium days it will remove hes promotion ( advanced promotion i mean voc id 9-10-11-12) but it doesnt works, can anyone help me?
PHP:
function onLogin(cid) 
if getPlayerPremiumDays(cid) = 0 and (getPlayerPromotionLevel(cid) >= 9) then
doPlayerSetPromotionLevel(cid, -2)
doPlayerSave(cid)
end
return true
end
 
In creature.xml add
<event type="login" name="removepromotion" script="removepromotion.lua"/>
add in..
data/creaturescripts/sctipts/login.lua
registerCreatureEvent(cid, "removepromotion")
 
Why not just make promotions in vocations.xml premium only?
Premium runs out, then they get basic vocation again..
 
Back
Top