Ir para conteúdo

Click Soft Repair


noobinhu

Posts Recomendados

Uma galera anda pedindo esta action para TFS, então aqui está, quando você clicar na Worn Soft Boots e der o dinheiro que foi configurado pelo script, você ganha uma nova Soft Boots.

 

Em actions/actions.xml adicione:

<action itemid="6530" script="other/softboots.lua"/>

 

Em actions/scripts/other crie um arquivo chamado softboots.lua contendo:

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

local moneyneed = 10000 -- price to get new soft boots

local playermoney = getPlayerMoney(cid)

if playermoney >= moneyneed then

if doPlayerTakeItem(cid, 6530, 1) then

doRemoveItem(item.uid,1)

doPlayerAddItem(cid, 6132, 1)

doPlayerRemoveMoney(cid, moneyneed)

doSendMagicEffect(fromPosition,12)

else

doPlayerSendTextMessage(cid,20, "You don't have worn soft boots.")

end

else

doPlayerSendTextMessage(cid,20, "Sorry, but you need ".. moneyneed .." gold coins to get a new soft boots.")

end

end

 

NPC de Soft que eu fiz: http://www.xtibia.com/forum/tfs-Npc-Soft-Boots-t101439.html

 

Só editar a parte em negrito para o dinheiro que o player precisar ter, e terá seu script pronto.

Obrigado,

Yunie.

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

  • 3 weeks later...
  • 2 weeks later...

Vo ve aqui se eu acha algum erro e tals eu posto aqui, se fica bom e eu for usa venho aqui agradece

 

E tipow eu achava melhor faze tipow um npc que troca os 10k + a worn boots pela nova soft boots que dai ficava mais real e mais rpg

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...