Ir para conteúdo
  • 0

AJUDA AQUI COM ESSE SCRIPT


Emooooo

Pergunta

ALGUEM ME AJUDA COM ESSE SCRIPT , QUERO QUE APAREÇA A MSG NA TELA DO PLAYER  , DE QUANTOS ITENS ELE GANHOU E O NOME DO ITEM , EX" voce ganhou 50 tibia coins"

 

 

segue o script

 

function onUse(cid, item, fromPosition, itemEx, toPosition)
local config = {
s = 11126, -- storage
level = 8, -- level minimo
time = 1100, -- tempo em minutos para voltar a abrir a chest
item = {{7590, 10},{2173, 1},{7589, 10},{7620, 10},{7591, 10},{7588, 10},{7618, 10},{8472, 10},{8473, 10},{2789, 25},{2160, 1},{2152, 25},{2639, 1},{8306, 25},{2268, 25},{2273, 25},{2274, 25},{2214, 1},{2165, 1} } -- items sortiados(pode adicionar mais)
}
if getPlayerLevel(cid) < config.level then 
return doPlayerSendCancel(cid, "Você deve ter pelo menos level ".. config.level .." para abrir a Chest.") 
elseif getPlayerStorageValue(cid, config.s) >= os.time() then
local minutos = math.floor((getPlayerStorageValue(cid, config.s) - os.time())/(60)) 
return doPlayerSendTextMessage(cid, 25, "You already got your reward today, wait ".. (minutos < 0 and 0 or minutos) .." minuts to pick up again.")
end
local r = math.random(7, #config.item) 
doPlayerAddItem(cid, config.item[r][1], config.item[r][2]) 
setPlayerStorageValue(cid, config.s, os.time()+config.time*60)
doSendMagicEffect(getPlayerPosition(cid), 30)
doPlayerSendTextMessage(cid, 22, "You got your daily reward !") 
return true
end

Link para o comentário
Compartilhar em outros sites

1 resposta a esta questão

Posts Recomendados

  • 0

Primeira dica é quando for postar qualquer codigo coloque a tag SPOILER pra que o codigo fique melhor de se ver.

Testa ai esse código.

 

 


function onUse(cid, item, fromPosition, itemEx, toPosition)
local config = {
s = 11126, -- storage
level = 8, -- level minimo
time = 1100, -- tempo em minutos para voltar a abrir a chest
item = {{7590, 10},{2173, 1},{7589, 10},{7620, 10},{7591, 10},{7588, 10},{7618, 10},{8472, 10},{8473, 10},{2789, 25},{2160, 1},{2152, 25},{2639, 1},{8306, 25},{2268, 25},{2273, 25},{2274, 25},{2214, 1},{2165, 1} } -- items sortiados(pode adicionar mais)
}

    if getPlayerLevel(cid) < config.level then 
        return doPlayerSendCancel(cid, "Você deve ter pelo menos level ".. config.level .." para abrir a Chest.") 
    elseif getPlayerStorageValue(cid, config.s) >= os.time() then
        local minutos = math.floor((getPlayerStorageValue(cid, config.s) - os.time())/(60)) 
        return doPlayerSendTextMessage(cid, 25, "You already got your reward today, wait ".. (minutos < 0 and 0 or minutos) .." minuts to pick up again.")
    end
    local r = math.random(7, #config.item) 
    doPlayerAddItem(cid, config.item[r][1], config.item[r][2]) 
    doPlayerSendTextMessage(cid, 22, "Voce ganhou "..config.item[r][2].."x"..getItemNameById(config.item[r][1])"!") 
    setPlayerStorageValue(cid, config.s, os.time()+config.time*60)
    doSendMagicEffect(getPlayerPosition(cid), 30)
    return true
end
 

 

Editado por xSONYx
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...