Jump to content

Quest Azucar caballo


�Alejandro&Sara�Tkm

Recommended Posts

Aqui traigo otra quest para Metin2Zone el azucar de caballo

quest pet_change_name begin
    state start begin
	    when 71110.use begin
		    horse.set_level(22)
		    say_title("Azúcar de mascota:")
		    say("")
		    say("Saludos , "..pc.get_name()..".")
		    say("Con este item podrás cambiar el nombre a tu mascota!")
		    say("")
		    say("")
		    say_reward("Cada mascota debe tener su propio nombre!")
		    say_reward("Introduce el nombre de tu mascota:")
		    local horse_name = input()
			    if string.len(horse_name) < 2 then
				    say_title("Azúcar de mascota:")
				    say("El nombre es muy corto.")
				    say("")
				    horse.unsummon()
				    horse.set_level(1)
				    return
			    elseif string.len(horse_name) > 12 then
				    say_title("Azúcar de mascota:")
				    say("El nombre es muy largo.")
				    say("")
				    horse.unsummon()
				    horse.set_level(1)
				    return
			    end
		    local ret = horse.set_name(horse_name)
			    say_title("Mascotas:")
		    if ret == 0 then
			    say_reward("No tienes mascotas.")
			    say("")
			    horse.unsummon()
			   horse.set_level(1)
		    elseif ret == 1 then
			    say_reward("No se puede utilizar ese nombre!")
			    say("")
			    horse.unsummon()
			    horse.set_level(1)
		    elseif ret == 2 then
			    say_title("Mascotas:")
			    say("Un momento por favor, estoy meditandolo!")
			    say("[DELAY value;340]...[/DELAY]")
			    say_reward("Ok, te dejaré ponerle ese nombre, xD")
			    say("Cuida bien de ella y pasalo bien!!")
			    horse.unsummon()
			    horse.set_level(1)
			    pc.remove_item("71110")
		    end
	    end
    end
end
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...