-YC- Posted April 23, 2014 Report Share Posted April 23, 2014 Hola amigos de mz bueno queria saber si me pueden corregir esta quest soy noob en esto de quest: quest itematuendo begin state start begin when 50512.use begin say("Hola Bienvenido a Galhir Of Metin2?")say("Con este sencillo item por ser nuevo")say("te se te dará un atuendo por 1 dia.")say("y el peinado por igualmente 1 dia ")say_reward("Debes elegir tu sexo.")say_reward("Atte:[YC]")local item = select ("Hombre" , "Mujer")if item == 1 thensay("Puedes escojer 1 set de 2")say_reward("Elije tu set")local hombre = select ("Set 1", "Set 2", "Cerrar")if hombre == 1 thenpc.give_item2(41001, 1)pc.give_item2(45001, 1)chat("Has recibido tu atuendo y peinado")item.remove()elseif hombre == 2 thenpc.give_item2(41291, 1)pc.give_item2(45119, 1)chat("Has recibido tu atuendo y peinado")item.remove()elseif hombre == 3 thenreturnendelseif item == 2 thensay("Puedes escojer 1 set de 2")say_reward("Elije tu set")local mujer = select ("Set 1", " Set 1", "Cerrar")if mujer == 1 thenpc_give_item2 (41002, 1)pc_give_item2 (45002, 1)chat("Has recibido tu atuendo y peinado")item.remove()elseif mujer == 2 thenpc_give_item2 (41295, 1)pc_give_item2 (45123, 1)chat("Has recibido tu atuendo y peinado")item.remove()elseif mujer == 3 thenreturnendendend Link to comment Share on other sites More sharing options...
Tiico™ Posted April 23, 2014 Report Share Posted April 23, 2014 quest items_atuendos begin state start begin when 50512.use begin say_title("Hola Bienvenido a Galhir Of Metin2: ") say("Con este sencillo item por ser nuevo") say("te se te dará un atuendo por 1 dia,") say("y el peinado por igualmente 1 dia.") say_reward("Elije el set que desees.") local set = select ("Set 1","Set 2") local item = { [0] = {41001,45001}, [1] = {41002,45002} } local item2 ={ [0] = {41291,45119}, [1] = {41295,45123} } if set == 1 then pc.give_item2(item[pc.get_sex()], 1) chat("Has recibido exitosamente el set numero 1.") elseif set == 2 then pc.give_item2(item2[pc.get_sex()], 1) chat("Has recibido exitosamente el set numero 2.") end end endend -YC- 1 Link to comment Share on other sites More sharing options...
-YC- Posted April 23, 2014 Author Report Share Posted April 23, 2014 woow te amo xd +1 Thanks Link to comment Share on other sites More sharing options...
Rafa23Alzira Posted April 24, 2014 Report Share Posted April 24, 2014 Cierro ya que está resuelto. Link to comment Share on other sites More sharing options...
Recommended Posts