Ir para conteúdo

[Encerrado] [PEDIDO]ADDON SYSTEM BUG


Mykez

Posts Recomendados

Bom galera queria saber como faser pro ADDON Continuar no pokemon ao dar Rider,Surf,Fly system preciso dessa scripter Urgente pra quem ajudar REP + Por uma semana .

 

 

 

 

 

• Script Dos Addon - Creditos RicardoSohnn • -POSTADO BY SPRIGAL OPS STIGAL.

 

 

 

Em actions.xml adicione a seguinte tag:

<action itemid="xxxx" event="script" value="addons.lua"/>

Sendo, xxxx o id do item que vai dar o addon.

 

addons.lua

 

function onUse(cid, item, fromPosition, itemEx, toPosition)

local addons = {

[xxxx] = {pokemon= "Scyther" , looktype = 510}, --xxxx = id do item do addon --- "Scyther" = nome do pokemon --- looktype = 1 é o looktype do pokemon com addon

}

 

if #getCreatureSummons(cid) > 0 then

doPlayerSendCancel(cid, "Please back your pokemon.")

return false

end

local numero = addons[item.itemid].looktype

 

local pb = getPlayerSlotItem(cid, 8).uid

local pk = addons[item.itemid].pokemon

 

if getItemAttribute(pb,"poke") ~= pk then

doPlayerSendCancel(cid, "Sorry, you can't use this addon on this poke.")

return false

end

 

if getItemAttribute(pb,"addon") < 1 then

doRemoveItem(item.uid, 1)

doPlayerSendTextMessage(cid, 27, "Congratulations! Now your pokemon will use the addon.")

doSetItemAttribute(pb,"addon",numero)

return true

end

 

return true

end

Na action do goback, no finalzinho antes de

 

else

doPlayerSendCancel(cid, "This pokemon is fainted.")

end

 

Coloque:

 

local pk = getCreatureSummons(cid)[1]

local pb = getPlayerSlotItem(cid, 8).uid

local look = getItemAttribute(pb,"addon")

if not look then

doSetItemAttribute(pb,"addon",0)

return false

end

if look > 0 then

doSetCreatureOutfit(pk, {lookType = look}, -1)

return true

end

 

Agora em data/lib/catch system.lua

Depois de:

 

doItemSetAttribute(item, "description", description)

Coloque:

 

doItemSetAttribute(item, "addon", 0)

 

Depois em data/talkactions/scripts/createpokeball.lua depois de:

 

doItemSetAttribute(item, "description", "Contains a "..name..".")

Coloque:

 

doItemSetAttribute(item, "addon", 0)

Na action do goback, no finalzinho antes de

 

else

doPlayerSendCancel(cid, "This pokemon is fainted.")

end

 

Coloque:

 

local pk = getCreatureSummons(cid)[1]

local pb = getPlayerSlotItem(cid, 8).uid

local look = getItemAttribute(pb,"addon")

if not look then

doSetItemAttribute(pb,"addon",0)

return false

end

if look > 0 then

doSetCreatureOutfit(pk, {lookType = look}, -1)

return true

end

 

Agora em data/lib/catch system.lua

Depois de:

 

doItemSetAttribute(item, "description", description)

Coloque:

 

doItemSetAttribute(item, "addon", 0)

 

Depois em data/talkactions/scripts/createpokeball.lua depois de:

 

doItemSetAttribute(item, "description", "Contains a "..name..".")

Coloque:

 

doItemSetAttribute(item, "addon", 0)

 

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

  • 4 years later...
A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta.

+ Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda.
* Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado.
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...