Jump to content

[PETICION]Quest MisionTeleport


EzekielitohMercury

Recommended Posts

quest mapacomercio begin
state start begin
  when letter begin
   send_letter("Mapa comercio")
  end
  when info or button begin
   say("Hola "..pc.get_name().."!")
   say("Deseas ir al mapa de comercio?")
   local a = select ("Sí", "No")
   if a == 1 then
	pc.warp(x, y)
   end
  end
end
end
Olle Puse La Mision Y Todo Pero No Me Aparece! :S
Link to comment
Share on other sites

Decía Noa que no era necesario un cambio de state en la quest, así que no lo hice.

Pero te dejo aqui otra:

 

quest mapacomercio begin
state start begin
  when login begin
   set_state(comercio)
  end
end
state comercio begin
  when letter begin
   send_letter("Mapa comercio")
  end
  when info or button begin
   say("Hola "..pc.get_name().."!")
   say("Deseas ir al mapa de comercio?")
   local a = select ("Sí", "No")
   if a == 1 then
    pc.warp(x, y)
   end
  end
end
end
Link to comment
Share on other sites

  • Dilong locked this topic
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

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