antiblock
Rodnia | Alpha & Omega
  • Chatbox

    Did you check out our Discord? https://discord.gg/FFdvMjk9xA
    You don't have permission to chat.
    Load More
  • 0
Sign in to follow this  
XicoUsb

[Dúvida]Erro na quest

Question

Boas pessoal estou a tentar usar essa quest

 

say_title("Loja Geral")
say ("")
say_item ( "Mármore da Benção" , 70024 , "" )
say ("")
say ("Queres receber 5 Mármores da Benção?")
    if select("Sim", "Não") == 1 then 
        pc.give_item2(70024,5)
    end
end

 

 

 

A quest está metida na pasta 9003.

Se alguém me poder ajudar agradecia.

Obrigado

Share this post


Link to post
Share on other sites

2 answers to this question

  • 0
quest marmores begin
	state start begin
		when 9003.chat."Mármores da Benção" begin
			say_title("Loja Geral")
			say ("")
			say_item ( "Mármore da Benção" , 70024 , "" )
			say ("")
			say ("Queres receber 5 Mármores da Benção?")
			local escolha = select("Sim", "Não")
			if escolha == 1 then 
				pc.give_item2(70024,5)
			elseif escolha == 2 then
				return
			end
		end
	end
end

Btw, os mármores não são stackáveis a não ser que os configures para tal no item_proto

Share this post


Link to post
Share on other sites
antiblock
https://arwen2.global/
  • 0
13 horas atrás, Karbust™ # PT disse:

quest marmores begin
	state start begin
		when 9003.chat."Mármores da Benção" begin
			say_title("Loja Geral")
			say ("")
			say_item ( "Mármore da Benção" , 70024 , "" )
			say ("")
			say ("Queres receber 5 Mármores da Benção?")
			local escolha = select("Sim", "Não")
			if escolha == 1 then 
				pc.give_item2(70024,5)
			elseif escolha == 2 then
				return
			end
		end
	end
end

Btw, os mármores não são stackáveis a não ser que os configures para tal no item_proto

Obrigado bro, está resolvido ;)

Share this post


Link to post
Share on other sites

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