antiblock
Elveron
  • Chatbox

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

Duvida Em Quest Simples

Question

Boas,

Estava a tentar fazer uma quest para um anel de Teleporte, mas quando clico nele não acontece nada.

Alguem me pode dizer se tem algum erro?

quest move_ring begin
	state start begin
		when 70007.use begin 
			say("Para onde deseja ser Teleportado?")
			wait()
			local s=select(
				"Reino Azul Vila 1",
				"Reino Azul Vila 2",
				"Reino Amarelo Vila 1",
				"Reino Amarelo Vila 2",
				"Reino Vermelho Vila 1",
				"Reino Vermelho Vila 2",
				"Cancelar")

				if s == 1 then
					pc.warp(921600 , 204800)
				elseif s == 2 then
					pc.warp(819200 , 204800)
				elseif s == 3 then
					pc.warp(000 , 102400)
				elseif s == 4 then
					pc.warp(102400 , 204800)
				elseif s == 5 then
					pc.warp(409600 , 896000)
				elseif s == 6 then
					pc.warp(307200 , 819200)
				elseif s == 7 then
					return
				end
				
			end
		end
	end

Share this post


Link to post
Share on other sites

2 answers to this question

  • 0

Anel têm type 16? Acho que é esse o type de quest item senão me engano tho.

Share this post


Link to post
Share on other sites
antiblock
diamwall
  • 0

Anel têm type 16? Acho que é esse o type de quest item senão me engano tho.

Não sabia que os itens de quest tinham de ter um type especifico

Obrigado, (BTW o Type para itens de quest é 18)

Podem fechar.

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