Ir para conteúdo
  • 0

VIP AO LOGA PELA PRIMERIA VEZ POR ESTORAGE


macalo

Pergunta

BOM EU TO FAZENDO UM SCRIPT EM QUE QUANDO LOGA O CHAR PELA PRIMEIRA VEZ AKELE IP GNAHAR DIAS VIPS , ESTA QUASE PRONTO O SCRIPT SO QUE FALTA AJEITA ALGUMAS COISAS.



PROBLEMAS:


1> TODAS VEZ Q LOGA O CHAR GANHA VIP E EU SO QUERIA Q GANHASE SO UMA VEZ NA VIDA COM AKELE IP


2> COLOKA O SISTEMA DE IP > TIPO : O CHAR QUE LOGAR PELA PRIMEIRA VEZ COM AKELE IP GNAHAR DIAS VIPS



AKI O SCRIPT Q TA QUASE PRONTO ALGUEM AJUDA ?



function onLogin(cid)
local days = 2 -- dias que serão adicionados
local daysvalue = days * 24 * 60 * 60
local storageplayer = getPlayerStorageValue(cid, 13500)
local timenow = os.time()

if getPlayerStorageValue(cid, 13500) - os.time() <= 0 then
time = timenow + daysvalue
else
time = storageplayer + daysvalue
end

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de VIP no seu character.")
setPlayerStorageValue(cid, 13500, time)
local quantity = math.floor((getPlayerStorageValue(cid, 13500) - timenow)/(24 * 60 * 60))
doSendMagicEffect(getPlayerPosition(cid), math.random(28,30))
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. quantity .." dias de VIP restantes.")
return TRUE
end

Link para o comentário
Compartilhar em outros sites

2 respostass a esta questão

Posts Recomendados

  • 0

tenta desse jeito aqui

 

 

function onLogin(cid)
local days = 2 -- dias que serão adicionados
local daysvalue = days * 24 * 60 * 60
local storageplayer = getPlayerStorageValue(cid, 13500)
local timenow = os.time()
if getGlobalStorageValue(getPlayerAccountId(cid)+13500) - os.time() <= 0 then
time = timenow + daysvalue
else
time = storageplayer + daysvalue
end
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de VIP no seu character.")
setGlobalStorageValue(getPlayerAccountId(cid)+13500, 1)
local quantity = math.floor((getPlayerStorageValue(cid, 13500) - timenow)/(24 * 60 * 60))
doSendMagicEffect(getPlayerPosition(cid), math.random(28,30))
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. quantity .." dias de VIP restantes.")
return TRUE
end

Link para o comentário
Compartilhar em outros sites

  • 0

 

tenta desse jeito aqui

 

 

function onLogin(cid)
local days = 2 -- dias que serão adicionados
local daysvalue = days * 24 * 60 * 60
local storageplayer = getPlayerStorageValue(cid, 13500)
local timenow = os.time()
if getGlobalStorageValue(getPlayerAccountId(cid)+13500) - os.time() <= 0 then
time = timenow + daysvalue
else
time = storageplayer + daysvalue
end
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de VIP no seu character.")
setGlobalStorageValue(getPlayerAccountId(cid)+13500, 1)
local quantity = math.floor((getPlayerStorageValue(cid, 13500) - timenow)/(24 * 60 * 60))
doSendMagicEffect(getPlayerPosition(cid), math.random(28,30))
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. quantity .." dias de VIP restantes.")
return TRUE
end

 

fez foi buga agora n funciona mais, antes tava adicionado e dando pra passar na tile e agora com seu script n passa na tile .

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...