Examples of showQuestMovie()


Examples of l2p.gameserver.model.L2Player.showQuestMovie()

    }
    else if(event.equalsIgnoreCase("close_your_eyes"))
    {
      st.set("cond", "4");
      st.playSound(SOUND_MIDDLE);
      player.showQuestMovie(ExStartScenePlayer.SCENE_SSQ_DYING_MASSAGE);
      return "";
    }
    else if(event.equalsIgnoreCase("32569-09.htm"))
    {
      htmltext = "32569-09.htm";
View Full Code Here

Examples of l2p.gameserver.model.L2Player.showQuestMovie()

    }
    monster1.deleteMe();
    monster2.deleteMe();
    monster3.deleteMe();
    Functions.npcSay(npc, "... You may have won this time... But next time, I will surely capture you!");
    player.showQuestMovie(14);
    return null;
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.showQuestMovie()

    }
    else if(event.equalsIgnoreCase("30760-05.htm"))
    {
      st.set("cond", "2");
      st.playSound(SOUND_MIDDLE);
      player.showQuestMovie(ExStartScenePlayer.SCENE_SSQ_CONTRACT_OF_MAMMON);
    }
    else if(event.equalsIgnoreCase("30760-07.htm"))
    {
      st.set("cond", "3");
      st.playSound(SOUND_MIDDLE);
View Full Code Here

Examples of l2p.gameserver.model.L2Player.showQuestMovie()

    }
    else if(event.equalsIgnoreCase("8"))
    {
      st.set("cond", "2");
      st.playSound(SOUND_MIDDLE);
      player.showQuestMovie(ExStartScenePlayer.SCENE_SSQ_SUSPICIOUS_DEATH);
      return "";
    }
    else if(event.equalsIgnoreCase("30197-03.htm"))
    {
      st.set("cond", "4");
View Full Code Here

Examples of lineage2.gameserver.model.Player.showQuestMovie()

        //player.setVar("instance10301", "true", -1);
        return;
      }
      if (!player.getVarB("@25_20_telzone_to_magmeld"))
      {
        player.showQuestMovie(SceneMovie.si_arkan_enter);
        player.setVar("@25_20_telzone_to_magmeld", "true", -1);
      }
      cha.teleToLocation(Location.parseLoc(zone.getParams().getString("tele")));
    }
   
View Full Code Here

Examples of lineage2.gameserver.model.Player.showQuestMovie()

        if (!player.getVarB("@ti_present_video"))
        {
          QuestState qs = player.getQuestState(_10320_LetsGototheCentralSquare.class);
          if ((qs != null) && (qs.getCond() == 1))
          {
            player.showQuestMovie(SceneMovie.si_illusion_02_que);
          }
          else
          {
            player.showQuestMovie(SceneMovie.si_illusion_01_que);
          }
View Full Code Here

Examples of lineage2.gameserver.model.Player.showQuestMovie()

          {
            player.showQuestMovie(SceneMovie.si_illusion_02_que);
          }
          else
          {
            player.showQuestMovie(SceneMovie.si_illusion_01_que);
          }
          player.setVar("@ti_present_video", "true", -1);
        }
      }
    }
View Full Code Here

Examples of lineage2.gameserver.model.Player.showQuestMovie()

      if (cha.isPlayer())
      {
        Player player = cha.getPlayer();
        if (!player.getVarB("@roe_present_video"))
        {
          player.showQuestMovie(SceneMovie.si_illusion_03_que);
          player.setVar("@roe_present_video", "true", -1);
        }
      }
    }
   
View Full Code Here

Examples of lineage2.gameserver.model.Player.showQuestMovie()

      if ((player == null) || !cha.isPlayer() || done)
      {
        return;
      }
      done = true;
      player.showQuestMovie(ExStartScenePlayer.SCENE_SSQ2_HOLY_BURIAL_GROUND_OPENING);
    }
   
    /**
     * Method onZoneLeave.
     * @param zone Zone
View Full Code Here

Examples of lineage2.gameserver.model.Player.showQuestMovie()

      }
      player.broadcastPacket(new EventTrigger(21100100, true));
      if (!done)
      {
        done = true;
        player.showQuestMovie(ExStartScenePlayer.SCENE_SSQ2_SOLINA_TOMB_OPENING);
      }
    }
   
    /**
     * Method onZoneLeave.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.