Jump to content

Recommended Posts

Posted
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.

Posted

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
Posted

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
Posted

Tu lo se, pero iba por tico xd

Lo se xDPor cierto, haber si algun dia nos enseñas algo mas '-' por lo menos yo estoy interesado
Posted

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
Posted

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 ;) 

Posted

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
  • Dilong locked this topic
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

This site uses cookies to enhance your browsing experience and provide relevant content. By continuing to browse, you agree to our We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. and Terms of Use. For more information on how we protect your data, please check our Privacy Policy.