Ir para conteúdo
  • 0

Quest q escolha entre 5 itens


maikons

Pergunta

4 respostass a esta questão

Posts Recomendados

  • 0

actions/scripts/

Spoiler
local premios = {
--[ACTIONID] = {ID DO ITEM, QUANTIDADE},
[2222] = {1245, 1},
[3333] = {1245, 1},
[4444] = {1245, 1},
}
local sto = 53599 --storage de completar a quest
function onUse(cid, item, frompos, item2, topos)

if getPlayerStorageValue(cid, sto) >= 1 then
return doPlayerSendTextMessage(cid, 27, "You already completed this quest!")
end
local premio = premios[item.actionid]

doPlayerAddItem(cid, premio[1], premio[2])
setPlayerStorageValue(cid, sto, 1)
doPlayerSendTextMessage(cid, 27, "Congratulations, you have completed this quest!")
return true
end


tag:
<action actionid="xxxx" event="script" value="yyyy.lua"/>

 

 

 

 

Se ajudei REP+

Link para o comentário
Compartilhar em outros sites

  • 0

actions/scripts/

Spoiler
local premios = {

--[ACTIONID] = {ID DO ITEM, QUANTIDADE},

[2222] = {1245, 1},

[3333] = {1245, 1},

[4444] = {1245, 1},

}

local sto = 53599 --storage de completar a quest

function onUse(cid, item, frompos, item2, topos)

 

if getPlayerStorageValue(cid, sto) >= 1 then

return doPlayerSendTextMessage(cid, 27, "You already completed this quest!")

end

local premio = premios[item.actionid]

 

doPlayerAddItem(cid, premio[1], premio[2])

setPlayerStorageValue(cid, sto, 1)

doPlayerSendTextMessage(cid, 27, "Congratulations, you have completed this quest!")

return true

end

tag:

<action actionid="xxxx" event="script" value="yyyy.lua"/>

 

 

 

 

Se ajudei REP+

 

Obrigado, mt bom script REP+

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...