Riochu™ no es Posted April 5, 2013 Report Share Posted April 5, 2013 Buenas chicos alguien tiene . El quest cuando llegas al 75 Que tenga un mision que te lleva siempre que quieras . Es este mapa Link to comment Share on other sites More sharing options...
SeMa™ Posted April 5, 2013 Report Share Posted April 5, 2013 quest aaa begin state start begin when levelup or login in pc.get_map_index == 73 begin say("hola ") say("quieres que te lleve a ....") local s = select ( "si " , "no") if s == 1 then pc.warp(xxxx , yyyy) end end end end Link to comment Share on other sites More sharing options...
fuuton97 Posted April 5, 2013 Report Share Posted April 5, 2013 quest lvl_73_gruta begin state start begin when login or levelup with pc.get_level() == 75 begin set_state( gotoinfomation ) end end state gotoinfomation begin when letter begin send_letter("Ir a la Gruta") end when button or info begin say_title("Bienvenido:") say("Conmigo irás a la Gruta") say("TEXTO") say("TEXTO") say_reward("Quieres ir?") local gruta = select("Si" , "No") if gruta == 1 then pc.warp(xxxx, xxxx) ---Coordenadas del warp del mapa chat("Serás llevado a la gruta") set_state(__COMPLETE__) end end state __COMPLETE__ begin end end end Link to comment Share on other sites More sharing options...
Riochu™ no es Posted April 5, 2013 Author Report Share Posted April 5, 2013 Buenas chicos alguien tiene . El quest cuando llegas al 75 Que tenga un mision que te lleva siempre que quieras . Es este mapa http-~~-//www.youtube.com/watch?v=UUEEE3PQZno quest aaa begin state start begin when levelup or login in pc.get_map_index == 73 begin say("hola ") say("quieres que te lleve a ....") local s = select ( "si " , "no") if s == 1 then pc.warp(xxxx , yyyy) end end end end No me funcciona Link to comment Share on other sites More sharing options...
Dextrok Posted April 5, 2013 Report Share Posted April 5, 2013 quest go_to_map begin state start begin when login or levelup with pc.get_level() >= 75 begin set_state(_PERGAMINO_) end end state __PERGAMINO_ begin when letter begin send_letter("Gruta del Exhilio") end when info or button begin local x, y = xxxx, yyyy --Aca se le asigna las coordenadas del mapa say("Deseas ir a la gruta del exhilio?") local k = select("Si", "No") if k == 1 then pc.warp(x, y) end end end end Link to comment Share on other sites More sharing options...
Recommended Posts