• 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 Second Promotion only Premium Accounts

Vrotz

Member
Joined
Apr 7, 2011
Messages
1,071
Reaction score
7
Location
Brazil
Hello,

I use the system Premium Account for VIP and you can only access the island VIP being a premium account.
All characters are born with promotion in OT, being premium or not they are born with promotion. (ed, ms, ek, rp).


I was wondering how to make a second promotion ONLY for Premium account and when premmy finish the second promotion also will be removed and the player will return to original vocation.

Ex.: VIP Elder > elder druid.

became very confused?
 
You can add something like this in login.lua.
LUA:
if getPlayerVipDays(cid) < 1 and getPlayerPromotionLevel(cid) == 2 then
   	doPlayerSetPromotionLevel(cid, 1)
end
Or if you want the player to get second promotion again when the player is vip again.
LUA:
if getPlayerVipDays(cid) >= 1 then
	if getPlayerPromotionLevel(cid) == 2 then
    		setPlayerStorageValue(cid, 22089, 1)
   	elseif getPlayerPromotionLevel(cid) == 1 and getPlayerStorageValue(cid, 22089) == 1 then
       		doPlayerSetPromotionLevel(cid, 2)
   	end

elseif getPlayerVipDays(cid) < 1 and getPlayerPromotionLevel(cid) == 2 then
   	doPlayerSetPromotionLevel(cid, 1)
end
 
Back
Top