antiblock
https://i.imgur.com/aJ17bf7.gif
  • Chatbox

    You don't have permission to chat.
    Load More
  • 0
Sign in to follow this  
dethi20

Como Faço Npc De Troca???

Question

Galera, alguem sabe me dizer como faço pra um NPC trocar um item por algum outro?

Tipo eu tenho uma perola red e eu quero trocar essa perola red no npc por algum outro item...

Pf alguém sabe?   :+1:

Share this post


Link to post
Share on other sites

2 answers to this question

  • 0

Olá toma aqui uma quest que acabei de criar

quest troca_de_items begin --- quest by Nanoia não remova os créditos por favor	state start begin	when 9003.chat."Troca de Items"  begin		say_title("Troca de Items")		say("")		   		say("Olá eu preciso de uma Pérola Escarlate")			say_item_vnum(27994)		-- aki mostra a imagem do items ingame.		say("Se você me trouxer posso te reconpensar")		say("com outro item")			wait()				say_title("Troca de Items")		if pc.count_item(27994) >= 1 then		-- coloque o id do item e quantidade para trocar		say("")		say_reward("Você quer mesmo trocar?")		say("")		local s = select("Sim", "Não")		if s==1 then		pc.removeitem("27994", 1)		--coloque o id e a quantidade de items a ser removidos									say_title("Troca de Items")		say("")	   		say_reward("Troca realizada com sucesso!!!")		say("")		pc.give_item2("27992", 20)		-- coloque o id e a quantidade de items que o jogar vai receber na trocaelse   return   endelse		say("")		say_reward("Lamento...")		say_reward("Você não possui uma Pérola Escarlate")		say("")         end      end   endend

Share this post


Link to post
Share on other sites
antiblock
Elveron

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this