ร¡๓vąℓ Posted November 18, 2013 Report Share Posted November 18, 2013 when 20095.chat."Participar do evento loko!" with game.get_event_flag("evento_loko") == 1 and pc.get_map_index() == 1 and pc.getempire() == 1 begin say_title(mob_name(npc.get_race())) say("") say("Olá evento loko é um lugar muito perigoso") say("poucos guerreiros dos muito que vão que conseguém voltar.") say("") say("Você está autorizado a participar") say("") local gs1 = select ("Sim","Não") if gs1 == 1 then pc.warp(0000, 0000) else return end -- when end -- if when 20095.chat."Participar do evento loko!" with game.get_event_flag("evento_loko") == 1 and pc.get_map_index() == 21 and pc.getempire() == 2 begin say_title(mob_name(npc.get_race())) say("") say("Olá a evento loko é um lugar muito perigoso") say("poucos guerreiros dos muito que vão que conseguém voltar.") say("") say("Você está autorizado a participar") say("") local gs2 = select ("Sim","Não") if gs2 == 1 then pc.warp(0000, 0000) else return end -- when end -- if when 20095.chat."Participar do evento loko!" with game.get_event_flag("evento_loko") == 1 and pc.get_map_index() == 41 and pc.getempire() == 3 begin say_title(mob_name(npc.get_race())) say("") say("Olá a evento loko é um lugar muito perigoso") say("poucos guerreiros dos muito que vão que conseguém voltar.") say("") say("Você está autorizado a participar") say("") local gs3 = select ("Sim","Não") if gs3 == 1 then pc.warp(0000, 0000) else return end -- when end -- if Tava allí, así que creo que lo hice bien, pero no funciona alguien puede decirme dónde se equivocaron o qué función no podría decirlo? when 20095.chat."Evento Loko" begin say_title(mob_name(npc.get_race())) say("") say("Olá "..pc.get_name().." ,") say("") wait() if game.get_event_flag("evento_loko") == 0 and game.set_event_flag("entrada_close", 1) then say("") say("Desculpe mais o evento não está aberto!") say("") elseif game.get_event_flag("evento_loko") == 1 then say("O evento Loko está ativado Se quiser") say("posso te levar para participar decida rápido pois") say("temos apenas 10 min antes das entrada fecharem") local ss = select ("Quero Participar", "Não obrigado") if ss == 1 then if pc.get_empire == 1 then pc.warp(0, 0) elseif pc.get_empire == 2 then pc.warp(0, 0) elseif pc.get_empire == 3 then pc.warp(0, 0) end elseif ss == 2 then return end end end Link to comment Share on other sites More sharing options...
pepineitor Posted November 18, 2013 Report Share Posted November 18, 2013 when 20095.chat."Evento Loko" begin say_title(mob_name(npc.get_race())) say("") say("Olá "..pc.get_name().." ,") say("") wait() if game.get_event_flag("evento_loko") == 0 then say("") say("Desculpe mais o evento não está aberto!") say("") elseif game.get_event_flag("evento_loko") == 1 then say("O evento Loko está ativado Se quiser") say("posso te levar para participar decida rápido pois") say("temos apenas 10 min antes das entrada fecharem") local ss = select ("Quero Participar", "Não obrigado") if ss == 1 then if pc.get_empire == 1 then pc.warp(0, 0) elseif pc.get_empire == 2 then pc.warp(0, 0) elseif pc.get_empire == 3 then pc.warp(0, 0) end end end end Link to comment Share on other sites More sharing options...
Recommended Posts