Olá pessoal eu preciso de ajudar
to pensando em fazer um script que quando loga verifica se tem dias premium, caso tenha verificar se ja é promotion, caso não seja, ele poe como promotion 2, caso ele seja, nao faz nada... Mas verifica também se tem dias premium ainda, se não tem mais tira promotion caso tenha...
como faço??
tenho uma base, mas não funciona
local vipkod = db.getResult("SELECT `vip_time` FROM `accounts` WHERE `name` = '"..getPlayerAccount(cid).."';") if vipkod:getDataInt("vip_time") > 0 then if getPlayerPromotionLevel(cid) != 2 then setPlayerPromotionLevel(cid, 2) end else if getPlayerPromotionLevel(cid) == 2 then setPlayerPromotionLevel(cid, 1) end local storagekod = db.getResult("SELECT `value` FROM `player_storage` WHERE `key` = 35870 AND `player_id` = '"..cid.."';") if storagekod:getDataInt("value") > 0 then strkod = "Bem vindo VIP" doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, strkod) else db.getResult("DELETE FROM `player_storage` WHERE `key` = 35870 AND `player_id` = '"..cid.."';") end end