Dextrok Posted February 23, 2013 Report Share Posted February 23, 2013 Hola, quería saber si alguien conocía algo sobre algún QF como el de pc.setqf() o pc.getqf(), que me permitiera llamarlo desde otra Quest y posea el mismo valor, estaba intentando hacerlo con el pc.setf, pero no me funciono, esto no se trata de hacer ningún mysql_query, ya sé que es una opción, pero para lo que quiero hacer no es la opción más viable. Por ejemplo, tengo la quest: quest quest1 begin state start begin when login begin say("Que bueno que entrastes. te esperabamos") pc.setqf("entradas", pc.getqf("entradas")+1) end end end Y esta una segunda quest: quest quest2 begin state start begin when 50000.chat."Consultar entradas" begin say("Usted tiene: " .. pc.getqf("entradas")) end end end El objetivo es que ese QF sirva para ambas quest, o sea tenga el mismo valor, y sea en quest completamente diferentes. Link to comment Share on other sites More sharing options...
Kryzz Posted February 23, 2013 Report Share Posted February 23, 2013 Prueba con un game.set_event_flag Link to comment Share on other sites More sharing options...
Dextrok Posted February 23, 2013 Author Report Share Posted February 23, 2013 Tampoco me sirve, ya que, debe de ser uno para cada personaje independiente. Link to comment Share on other sites More sharing options...
Shogun Posted February 23, 2013 Report Share Posted February 23, 2013 pc.getf("quest","flag") y pc.setf("quest","flag") Link to comment Share on other sites More sharing options...
Dextrok Posted February 23, 2013 Author Report Share Posted February 23, 2013 y en el setf, como altero el flag? no le falta un parametro, o sea por ejemplo: Hacer esto desde la quest2 pc.getf("quest1", "entradas") eso es lo que me estás diciendo? Link to comment Share on other sites More sharing options...
Shogun Posted February 23, 2013 Report Share Posted February 23, 2013 si: quest quest2 begin state start begin when 50000.chat."Consultar entradas" begin say("Usted tiene: " .. pc.getf("quest1","entradas")) end end end Link to comment Share on other sites More sharing options...
Dextrok Posted February 23, 2013 Author Report Share Posted February 23, 2013 Shogun me funcionó Gracias =) Link to comment Share on other sites More sharing options...
LeyendasMt2 Posted February 23, 2013 Report Share Posted February 23, 2013 creo ke tambien asi te funcionaria , osea tenerlos en la misma quest, seguiria conservando el qf quest quest1 begin state start begin when login begin say("Que bueno que entrastes. te esperabamos") pc.setqf("entradas", pc.getqf("entradas")+1) end when 50000.chat."Consultar entradas" begin say("Usted tiene: " .. pc.getqf("entradas")) end end end Link to comment Share on other sites More sharing options...
Recommended Posts