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

Action dors

chuj102

Banned User
Joined
Oct 3, 2008
Messages
13
Reaction score
0
How to make possible to open door with action 5102 only by players which have premmy for more then 2 days
 
Code:
if getPlayerPremiumDays(cid) >= 2 then
    -- do the same what level doors are doing
else
    doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Only players with 2 or more days of premium account may open this door.")
end
 
Back
Top