Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
hmm i understand this look.
data\creaturescripts\scripts create file vipcheck
LUA:
function onLogin(cid)
if getAccountPoints(cid) > 0 then
doPlayerSetSpecialDescription(cid, "(VIP)")
else
doPlayerSetSpecialDescription(cid, "(NOT VIP)")
end
return true
end
hmm i understand this look.
data\creaturescripts\scripts create file vipcheck
LUA:
function onLogin(cid)
if getAccountPoints(cid) > 0 then
doPlayerSetSpecialDescription(cid, "(VIP)")
else
doPlayerSetSpecialDescription(cid, "(NOT VIP)")
end
return true
end
And unless I'm mistaken, I'm pretty sure there is no database entry which stores creation time. The easiest way to do it would be to alter your database to include that extra column and then alter login.lua to set the current time in that character's database entry if it's their first time logging in.