EzekielitohMercury Posted April 30, 2013 Report Share Posted April 30, 2013 HOLA AMIGOS ALGUIEN ME HACE 1 QUEST QUE SEA COMO 1 MISION PERO QUE SEA UN TELEPORT? PORFAVOR QUE TE LLEVE A MAPA COMERCIO DESPUES LAS COORDENADAS SE LAS PONGO YO! GRACIAS! NataliMontoya 1 Link to comment Share on other sites More sharing options...
PACI Posted April 30, 2013 Report Share Posted April 30, 2013 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 EzekielitohMercury 1 Link to comment Share on other sites More sharing options...
EzekielitohMercury Posted May 1, 2013 Author Report Share Posted May 1, 2013 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! NataliMontoya 1 Link to comment Share on other sites More sharing options...
PACI Posted May 1, 2013 Report Share Posted May 1, 2013 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 EzekielitohMercury 1 Link to comment Share on other sites More sharing options...
Recommended Posts