santos2002 Posted October 15, 2012 Report Share Posted October 15, 2012 hola Pues necesito una quest de 10 objetos ( item ) y a tenerlos los 10 vayas a un npc y te de un regalo muchas gracias Link to comment Share on other sites More sharing options...
Yori Posted October 15, 2012 Report Share Posted October 15, 2012 quest premio begin state start begin when VNUMNPC.chat."Regalo" begin ----Vnum del npc say_title("escribe lo que quieras por aqui") say("escribe lo que quieras por aqui") say("escribe lo que quieras por aqui") say("Queires entregar los regalos por tus items?") local menu = select ("Si","No") if menu == 2 then say("vuelve cuando quieras") return elseif menu == 1 then local items = pc.count_item(vnum del item) ---Vnum del item if items >= 10 then say("Muy bien!!!") say("En recompensa te voy a dar este regalo") pc.remove_item(VnumITEM, 10 ) ---Vnum del item pc.give_item2(VNUM premio, 1 ) ---Vnum del premio return elseif peces < 10 then say("No tienes los items necesarios") return end end end end end te he marcado con comentarios donde tienes que poner los vnum de las cosas Link to comment Share on other sites More sharing options...
supercalifragilistico Posted October 15, 2012 Report Share Posted October 15, 2012 PodrÃas explicar para k sirve Link to comment Share on other sites More sharing options...
Santy!. Posted October 15, 2012 Report Share Posted October 15, 2012 la has hecho mal por que la opcion deveria aparecer si tienes los items algo asi: quest regalo begin state start begin when NPC.chat."lo que quieras" with pc.count_item(VNUM) == 10 begin say("Recives 1 regalo") pc.give_item2(VNUM) end end end end Link to comment Share on other sites More sharing options...
Yori Posted October 16, 2012 Report Share Posted October 16, 2012 si lo haces asi, no veran esa opcion y no sabran que existe... Link to comment Share on other sites More sharing options...
Recommended Posts