Tem como fazer esse script aparecer msg em cima do jogador falando o que ele recebeu ou se falhou? Outro detalhe, tem um item que pode cair que é mto bom, caso ele venha a ser sorteado aparecer para todo o servidor saber...
Citar
{item = 12636, qntd_max = 1, chance = 15},
bag_random/action
local config = {
{item = 8310, qntd_max = 2, chance = 45},
{item = 12635, qntd_max = 1, chance = 25},
{item = 12636, qntd_max = 1, chance = 15},
{item = 9971, qntd_max = 50, chance = 50},
{item = 11390, qntd_max = 1, chance = 20},
}
local msgsucesso = "Opa, que box interessante!"
local check = 0
function onUse(cid, item, fromPos, itemEx, toPos)
for _, var in pairs(config) do
if math.random(1, 100) <= var.chance and check <= 5 then
doPlayerAddItem(cid, var.item, var.qntd_max)
check = check+1
end
end
check =0
doRemoveItem(item.uid,1)
doCreatureSay(cid, msg_sucesso, TALKTYPE_ORANGE_1)
doSendMagicEffect(getCreaturePosition(cid), 49)
return true
end
Notei que tem uma msg ali, mas n vem funcionando..
Pergunta
brendoonh 15
Boa tarde/noite!
Tem como fazer esse script aparecer msg em cima do jogador falando o que ele recebeu ou se falhou? Outro detalhe, tem um item que pode cair que é mto bom, caso ele venha a ser sorteado aparecer para todo o servidor saber...
bag_random/action
local config = { {item = 8310, qntd_max = 2, chance = 45}, {item = 12635, qntd_max = 1, chance = 25}, {item = 12636, qntd_max = 1, chance = 15}, {item = 9971, qntd_max = 50, chance = 50}, {item = 11390, qntd_max = 1, chance = 20}, } local msgsucesso = "Opa, que box interessante!" local check = 0 function onUse(cid, item, fromPos, itemEx, toPos) for _, var in pairs(config) do if math.random(1, 100) <= var.chance and check <= 5 then doPlayerAddItem(cid, var.item, var.qntd_max) check = check+1 end end check =0 doRemoveItem(item.uid,1) doCreatureSay(cid, msg_sucesso, TALKTYPE_ORANGE_1) doSendMagicEffect(getCreaturePosition(cid), 49) return true end
Notei que tem uma msg ali, mas n vem funcionando..
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados