Ir para conteúdo

Desenterando Scarab


Visitante xbowaxx

Posts Recomendados

Visitante xbowaxx

1- Vá na pasta data/actions/scripts e abra o script shovel.lua.

Lá terá algo assim:

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

if item2.itemid == 0 then

return 0

end

if item2.itemid == 468 then

doTransformItem(item2.uid,469)

elseif item2.itemid == 481 then

doTransformItem(item2.uid,482)

elseif item2.itemid == 483 then

doTransformItem(item2.uid,484)

elseif item2.itemid == 1335 then

doTransformItem(item2.uid,383)

elseif item2.itemid == 293 then

doTransformItem(item2.uid,294)

else

return 0

end

doDecayItem(item2.uid)

return 1

end

Adicione:

elseif item2.itemid == 231 then

random_number = math.random(1,10)

doSendMagicEffect(topos,2)

elseif random_number <= 5 then

doSummonCreature("Scarab", topos)

Ficando assim:

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

if item2.itemid == 0 then

return 0

end

if item2.itemid == 468 then

doTransformItem(item2.uid,469)

elseif item2.itemid == 231 then

random_number = math.random(1,10)

doSendMagicEffect(topos,2)

elseif random_number <= 5 then

doSummonCreature("Scarab", topos)

elseif item2.itemid == 481 then

doTransformItem(item2.uid,482)

elseif item2.itemid == 483 then

doTransformItem(item2.uid,484)

elseif item2.itemid == 1335 then

doTransformItem(item2.uid,383)

elseif item2.itemid == 293 then

doTransformItem(item2.uid,294)

else

return 0

end

doDecayItem(item2.uid)

return 1

end

Explicando:

elseif item2.itemid == 231 then

---ESTE É O ID DA AREIA---

random_number = math.random(1,10)

---ESTE SAO + OU - A QUANTIDADE DE NUMEROS Q PODERAM CAIR PRA FAZER TAL COISA---

elseif random_number <= 5 then

---SE CAIR NA CHANCE 5 PARA BAIXO IRA FAZER TAL COISA---

doSummonCreature("Scarab", frompos)

---COISA QUE IRA ACONTECER, NO CASO UM SCARAB SERA SUMONADO

Creditos? Tudo para mim

OBS.: Voce tem que deixar a shovel no chao, como Tibia normal... e em alguns OTs o ID da areia é otro, precisa modificalo nessa parte:

CODE

elseif item2.itemid == 231 then

Só isso... não precisa alterar nada no actions.xml.

Link para o comentário
Compartilhar em outros sites

  • 1 month later...
  • 3 years later...
×
×
  • Criar Novo...