Ir para conteúdo
  • 0

Pedido Quest de 5 Itens pegar apenas um!


Jobbysantos1999

Pergunta

7 respostass a esta questão

Posts Recomendados

  • 0
function onUse(cid, item)

local item = 2160

if getPlayerStorageValue(cid, 212345) > 1 then
doPlayerSendTextMessage(cid, 22, "It's empty")
return true
end

if getPlayerStorageValue(cid, 212345) > 1 then
doPlayerAddItem(cid, item, 1)
doPlayerSendTextMessage(cid, 26, "Congratulations")
doPlayerSetStorageValue(cid, 212345,1)
return true
end

É so colocar as storage iguais que ai vai identificar se ele ja clico no baú.

 

com esse script voce cria 5 baús dai é so mudar o item ;)

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

  • 0

 

function onUse(cid, item, fromPosition, itemEx, toPosition)
 
    local AIDS = {
        [1278] = {2160, 5},
        [38291] = {3213, 80},
        [28193] = {1839, 30},
        [8113] = {1279, 5},
        [2893] = {1839, 2}
    }
 
    if(AIDS[item.actionid]) then
        if(getPlayerStorageValue(cid, 327891) == -1) then
            doPlayerAddItem(cid, AIDS[item.actionid][1], AIDS[item.actionid][2])
            doPlayerSendTextMessage(cid, 27, "You win your items.")
            doSendMagicEffect(fromPosition, 30)
            doSendMagicEffect(toPosition, 28)
            setPlayerStorageValue(cid, 327891, 1)
        else
            doPlayerSendTextMessage(cid, 27, "You already complete this quest.")
        end
    end
 
    return true
end
Link para o comentário
Compartilhar em outros sites

  • 0
function onUse(cid, item, fromPosition, itemEx, toPosition)
 
    local AIDS = {
        [1278] = {2160, 5},
        [38291] = {3213, 80},
        [28193] = {1839, 30},
        [8113] = {1279, 5},
        [2893] = {1839, 2}
    }
 
    if(AIDS[item.actionid]) then
        if(getPlayerStorageValue(cid, 327891) == -1) then
            doPlayerAddItem(cid, AIDS[item.actionid][1], AIDS[item.actionid][2])
            doPlayerSendTextMessage(cid, 27, "You win your items.")
            doSendMagicEffect(fromPosition, 30)
            doSendMagicEffect(toPosition, 28)
            setPlayerStorageValue(cid, 327891, 1)
        else
            doPlayerSendTextMessage(cid, 27, "You already complete this quest.")
        end
    end
 
    return true
end

 

Nunca vi desses antes como configura?

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...