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

Solved winning days of premium automatically

Kojiiro

Nobody cares. Do yourself.
Joined
May 10, 2010
Messages
534
Reaction score
9
Location
Brazil
people I wanted a script for when the player to create an account on the server it automatically gets 90 days for premium account, does anyone can help me in this script?

hugs kojiiro :thumbup:
 
Last edited:
this is very easy.

add this in creature scripts :D
Lua:
function onLogin(cid)
   if getPlayerGroupId(cid) == 1 and getPlayerStorageValue(cid, 50000) == -1 then
     doPlayerAddPremiumDays(cid, 90) -- 90 days of pacc
     setPlayerStorageValue(cid, 50000, 1)
   return true
end

Code:
<event type="login" name="premm" event="script" value="pacc.lua"/>
 
Back
Top