xKills Posted August 3, 2013 Report Share Posted August 3, 2013 Alguien me puede ayudar con esta quest .. me salta este error : La Quest es esta : quest teleport begin state start begin when 20088.chat"Teleport" begin say_title ( "Metin2Eclypse Mapas" ) say_title ( "Transportador:" ) say ( "Buenas joven luchador," ) say ( "hacia donde quieres transportarte?" ) local main_set = select ("Mapa Thunder","Mapa Bay","Mapa Holiwood","Mapa York","Salir") if main_set == 1 then if pc.get_level() < 75 then say("Lo siento aun no eres lvl 75") return end pc.warp ( 10240 , 16640 ) elseif main_set == 2 then if pc.get_level() < 80 then say("Lo siento aun no eres lvl 80") return end pc.warp ( 10496 , 15104 ) elseif main_set == 3 then if pc.get_level() < 90 then say("Lo siento aun no eres lvl 90") return end pc.warp ( 11776 , 16640 ) elseif main_set == 4 then if pc.get_level() < 100 then say("Lo siento aun no eres lvl 100") return end pc.warp ( 11264 , 15104 ) elseif main_set == 5 then return end end end end endend Les agradeceria su ayuda. Link to comment Share on other sites More sharing options...
Tiico™ Posted August 3, 2013 Report Share Posted August 3, 2013 Espero mis Thanks y Me Gusta! quest teleport begin state start begin when 20088.chat"Teleport" begin say_title ( "Metin2Eclypse Mapas" ) say_title ( "Transportador:" ) say ( "Buenas joven luchador," ) say ( "hacia donde quieres transportarte?" ) local main_set = select ("Mapa Thunder","Mapa Bay","Mapa Holiwood","Mapa York","Salir") if main_set == 1 then pc.warp ( 10240 , 16640 ) if pc.get_level() < 75 then say("Lo siento aun no eres lvl 75") return end elseif main_set == 2 then pc.warp ( 10496 , 15104 ) if pc.get_level() < 80 then say("Lo siento aun no eres lvl 80") return end elseif main_set == 3 then pc.warp ( 11776 , 16640 ) if pc.get_level() < 90 then say("Lo siento aun no eres lvl 90") return end elseif main_set == 4 then pc.warp ( 11264 , 15104 ) if pc.get_level() < 100 then say("Lo siento aun no eres lvl 100") return end end end endend Link to comment Share on other sites More sharing options...
KeKo Posted August 4, 2013 Report Share Posted August 4, 2013 Para que hay un curso sobre arrays si nadie lo usa quest teleport begin state start begin when 20088.chat"Teleport" begin say_title ( "Metin2Eclypse Mapas" ) say_title ( "Transportador:" ) say ( "Buenas joven luchador," ) say ( "hacia donde quieres transportarte?" ) local main_set = select ("Mapa Thunder","Mapa Bay","Mapa Holiwood","Mapa York","Salir") local cordes = { {10240,16640,75}, {10496,15104,80}, {11776,16640,90}, {11264,15104,95} } if main_set == 5 then return end if pc.get_level() < cordes[main_set][3] then say("Lo siento aun no eres "..cordes[main_set][3].."") return end pc.warp(cordes[main_set][1],cordes[main_set][2]) end endend Link to comment Share on other sites More sharing options...
PACI Posted August 4, 2013 Report Share Posted August 4, 2013 Para que hay un curso sobre arrays si nadie lo usa Yo lo uso, y mucho e.e Link to comment Share on other sites More sharing options...
KeKo Posted August 4, 2013 Report Share Posted August 4, 2013 Yo lo uso, y mucho e.e Tu lo se, pero iba por tico xd Link to comment Share on other sites More sharing options...
PACI Posted August 4, 2013 Report Share Posted August 4, 2013 Tu lo se, pero iba por tico xdLo se xDPor cierto, haber si algun dia nos enseñas algo mas '-' por lo menos yo estoy interesado Link to comment Share on other sites More sharing options...
xKills Posted August 4, 2013 Author Report Share Posted August 4, 2013 Keko tu quest me salta este error ... Debes iniciar sesión para ver el contenido del enlace en esta publicación. como lo arreglo ? Edito : Las dos quest me salta el mismo error porque es ?? yankee360 and TheKing24 2 Link to comment Share on other sites More sharing options...
PACI Posted August 4, 2013 Report Share Posted August 4, 2013 Prueba así: quest teleport begin state start begin when 20088.chat"Teleport" begin say_title ( "Metin2Eclypse Mapas" ) say_title ( "Transportador:" ) say ( "Buenas joven luchador," ) say ( "hacia donde quieres transportarte?" ) local main_set = select ("Mapa Thunder","Mapa Bay","Mapa Holiwood","Mapa York","Salir") local cordes = { {10240,16640,75}, {10496,15104,80}, {11776,16640,90}, {11264,15104,95} } if main_set != 5 then if pc.get_level() < cordes[main_set][3] then say("Lo siento aun no eres "..cordes[main_set][3].."") return else pc.warp(cordes[main_set][1],cordes[main_set][2]) end end end endend Link to comment Share on other sites More sharing options...
xKills Posted August 4, 2013 Author Report Share Posted August 4, 2013 Me sigue saltando el mismo error ... Si puedes agregame a Skype : xkills.xd y te enseño como la implemento y miras si hay algun error.Porfa Link to comment Share on other sites More sharing options...
PACI Posted August 4, 2013 Report Share Posted August 4, 2013 Ahhhhhhhh ya encontré el error. quest teleport begin state start begin when 20088.chat."Teleport" begin say_title ( "Metin2Eclypse Mapas" ) say_title ( "Transportador:" ) say ( "Buenas joven luchador," ) say ( "hacia donde quieres transportarte?" ) local main_set = select ("Mapa Thunder","Mapa Bay","Mapa Holiwood","Mapa York","Salir") local cordes = { {10240,16640,75}, {10496,15104,80}, {11776,16640,90}, {11264,15104,95} } if main_set != 5 then if pc.get_level() < cordes[main_set][3] then say("Lo siento aun no eres "..cordes[main_set][3].."") return else pc.warp(cordes[main_set][1],cordes[main_set][2]) end end end endend Link to comment Share on other sites More sharing options...
Tiico™ Posted August 6, 2013 Report Share Posted August 6, 2013 Tu lo se, pero iba por tico xd xD Si lo uso, pero la queria dejar igual a la que tenia ,xD, hace poquito ando haciendo con los " for + arrays" e.e Link to comment Share on other sites More sharing options...
Recommended Posts