• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

VIP CHECK

Click to show howto add it.
Add just this..
Code:
if getPlayerStorageValue(cid, 11551) >= 1 then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have ".. getPlayerStorageValue(cid, 11551) .." days of VIP.")
end
if (getConfigValue("accountManager") == FALSE and getCreatureName(cid) == "Account Manager") then
return false
end
not this
Code:
function onLogin(cid)
if getPlayerStorageValue(cid, 11551) >= 1 then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have ".. getPlayerStorageValue(cid, 11551) .." days of VIP.")
end
if (getConfigValue("accountManager") == FALSE and getCreatureName(cid) == "Account Manager") then
return false
end
You dont need function onLogin(cid) you put the code under function onLogin(cid)
IF THIS DOES NOT WORK JUST POST YOUR LOGIN.LUA AND ILL ADD IT FOR YOU :)
 
Back
Top