Jump to content

Recommended Posts

Posted
quest desabilitarcaballo begin	state start begin		when 50051.use or 50052.use or 50053.use with pc.get_map_index() == X begin			syschat("No puedes sacar el caballo en este mapa.")		end	endend

Donde "X" pones el index del mapa.

Posted

Supuestamente en los "use", pero igual si ya venias con el caballo al mandarlo al mapa debes hacerle un unsummon, para que no pueda entrar con caballo y así ponerle el use

Posted

Supuestamente en los "use", pero igual si ya venias con el caballo al mandarlo al mapa debes hacerle un unsummon, para que no pueda entrar con caballo y así ponerle el use

quest desabilitarcaballo begin	state start begin		when 50051.use or 50052.use or 50053.use with pc.get_map_index() == X begin			syschat("No puedes sacar el caballo en este mapa.")		end		when login with pc.get_map_index() == X begin			if horse.is_summon() then				horse.unsummon()			end			if pc.is_mount() then				pc.unmount()			end		end	endend
Ala ahí está.No había pensao en eso.

 

when 50051.use or 50052.use or 50053.use with pc.get_map_index() == X begin
Paci, pero en que lado esta para que no se pueda?, no entendi xD

 

Los .use son los items que invocan el caballo.
Posted

Si lose , xD pero me referia a que no habias puesto esto

when 50051.use or 50052.use or 50053.use with pc.get_map_index() == MAPINDEX begin    --- Mapa    chat("No puedes sacar el caballo en este mapa.")endwhen login with pc.get_map_index() == MAPINDEX begin    if horse.is_summon() then        horse.unsummon()    end    if pc.is_mount() then	pc.unmount()    endend
Posted

 

Si lose , xD pero me referia a que no habias puesto esto

when 50051.use or 50052.use or 50053.use with pc.get_map_index() == MAPINDEX begin    --- Mapa    chat("No puedes sacar el caballo en este mapa.")endwhen login with pc.get_map_index() == MAPINDEX begin    if horse.is_summon() then        horse.unsummon()    end    if pc.is_mount() then	pc.unmount()    endend

 

 

Mi experiencia me dice que no pongais eso, xq no funcionara. Por algun motivo muchos files tienen bug la funcion pc.get_map_index()

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