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

Someone Can HELP ME ? Script? Rep+

tricolor1935

New Member
Joined
Nov 3, 2010
Messages
151
Reaction score
0
Location
Brazil
Hi guess, in my otserv have a feature if you get level 70+ you automatic win 3 days of premmium account, but the problem is, if player create 5 characters in the same account and get all chars level 70+ he will win 3 days per character.
I want a script that you will win 3 days if you get 70+ in character, but not in the same account, because people creating new character in the same account to make it.
Understand me?
Sorry for bad english
My script is it:
function onLogin(cid)
level = getPlayerLevel(cid)
if getPlayerStorageValue(cid, 3000) == -1 and level > 70 then

doPlayerAddPremiumDays(cid, 3)
doPlayerSendTextMessage(cid,22,"You reached to level 70 and win 3 days premium! Relogout to use it")
setPlayerStorageValue(cid, 3000, 1)
end
return TRUE
end

I will aprecciate who want help me =D
Thx
 
Back
Top