-
Total de itens
281 -
Registro em
-
Última visita
-
Dias Ganhos
3
Tipo de Conteúdo
Perfis
Fóruns
Calendário
Publique
Tudo que Muvuka postou
-
function onLogin(cid) local vipStorage = getPlayerStorageValue(cid, 13545) if vipStorage > 0 then if vipStorage - os.time() <= 0 then setPlayerStorageValue(cid, 13545, -1) doPlayerPopupFYI(cid, "Sua [VIP] Acabou.") if string.find(tostring(getCreatureName(cid)), "%[VIP%]") then addEvent(EddyHavoc, 3 * 1000, cid) end else local daysLeft = math.ceil((vipStorage - currentTime) / (24 * 60 * 60)) local pos = {x = 154, y = 51, z = 7} doTeleportThing(cid, pos) doPlayerPopupFYI(cid, "Sua [VIP] Acabou.") setPlayerStorageValue(cid, 13545, -1) if string.find(tostring(getCreatureName(cid)), "%[VIP%]") then addEvent(EddyHavoc, 3 * 1000, cid) doPlayerPopupFYI(cid, "Voce ainda tem " .. daysLeft .. " dias de VIP.") end end end return true end
-
É Assim que ta certo endvip.lua %[VIP%] ou assim %[VIP]%"
-
function onLogin(cid)
local vipStorage = getPlayerStorageValue(cid, 13545)
if vipStorage > 0 then
local currentTime = os.time()
if vipStorage <= currentTime then
setPlayerStorageValue(cid, 13545, -1)
doPlayerPopupFYI(cid, "Sua [VIP] Acabou.")
if string.find(tostring(getCreatureName(cid)), "%[VIP%]") then
addEvent(EddyHavoc, 3 * 1000, cid)
end
else
local daysLeft = math.ceil((vipStorage - currentTime) / (24 * 60 * 60)) -- Calcula os dias restantes
local pos = {x = 154, y = 51, z = 7}
doTeleportThing(cid, pos)
doPlayerPopupFYI(cid, "Voce ainda tem " .. daysLeft .. " dias de VIP restantes.")
end
end
return true
end
-