Frank Arkero Posted June 6, 2013 Report Share Posted June 6, 2013 holas buenas.... te pregunto una cosa... yo vi en otro metin2 el npc 20090 tiene quest de monturas solo click "elige 1 a 5 o mas", "lobo", "tigre", "gabali", "leon" y mas.. click y sube montar en gratis?? me lo pasas? el quest de objeto del 20090 usr/home/game/share/locale/germany/quest/objecto/20090/chat/...... <---- es q no me acuerdo como se llama de quest monturas? PD: cual es monturas de quest? ejemplo: local item =select ("Lobo" , "Tigre" , "Leon" , "Gabali" , "Dinotauro" , "Leon Negro" , "Lobo Negro" , "Cancelar") if item == 1 then setskin ( NOWINDOW ) pc . give_item2 ( "50053") elseif item == 2 then setskin ( NOWINDOW ) pc . give_item2 ( "70007" ) elseif item == 3 then setskin ( NOWINDOW ) pc . give_item2 ( "70024" ) elseif item == 4 then pc . give_item2 ("10021") setskin ( NOWINDOW ) elseif item == 5 then pc . give_item2 ("10022") setskin ( NOWINDOW ) elseif item == 6 then setskin ( NOWINDOW ) pc . give_item2 ( "71020") elseif item == 7 then setskin ( NOWINDOW ) pc . give_item2 ("20000") elseif item == 8 then return end gracias espero tus respuestas Link to comment Share on other sites More sharing options...
KeKo Posted June 6, 2013 Report Share Posted June 6, 2013 Una quest para monturas puede ser asi: quest montus begin state start begin when idnpc.chat."Npc Monturas" begin -- pones la id del npc say_title("Elige tu Montura") say("") local montu = select ("Montura1" , "Montura2" , "Montura3" , "Montura4" , "Montura5" , "Cerrar") -- colocas los nombres local id = {idmontu1,idmontu2,idmontu3,idmontu4,idmontu5} -- colocas las ids de las montus if montu == table.getn(id)+1 then return end pc.mount(id[montu]) end end end Sonia and Frank Arkero 2 Link to comment Share on other sites More sharing options...
Sonia Posted June 6, 2013 Report Share Posted June 6, 2013 Link to comment Share on other sites More sharing options...
Frank Arkero Posted June 6, 2013 Author Report Share Posted June 6, 2013 Una quest para monturas puede ser asi: quest montus begin state start begin when idnpc.chat."Npc Monturas" begin -- pones la id del npc say_title("Elige tu Montura") say("") local montu = select ("Montura1" , "Montura2" , "Montura3" , "Montura4" , "Montura5" , "Cerrar") -- colocas los nombres local id = {idmontu1,idmontu2,idmontu3,idmontu4,idmontu5} -- colocas las ids de las montus if montu == table.getn(id)+1 then return end pc.mount(id[montu]) end end end muchas gracias Link to comment Share on other sites More sharing options...
Recommended Posts