Examples of ExShowUsmVideo


Examples of lineage2.gameserver.network.serverpackets.ExShowUsmVideo

    activeChar.sendPacket(new ExChangeMPCost(3, -20));
    activeChar.sendPacket(new ExChangeMPCost(22, -20));
    if (activeChar.getVar("startMovie") == null)
    {
      activeChar.setVar("startMovie", "1", -1);
      activeChar.sendPacket(new ExShowUsmVideo(ExShowUsmVideo.GD1_INTRO));
    }
    if ((activeChar.getLevel() > 84) && !activeChar.isAwaking())
    {
      AwakingManager.getInstance().SendReqToStartQuest(activeChar);
    }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExShowUsmVideo

   * @param player Player
   */
  public void onStartQuestAccept(Player player)
  {
    player.teleToLocation(-114708, 243918, -7968);
    player.sendPacket(new ExShowUsmVideo(ExShowUsmVideo.Q010));
    return;
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExShowUsmVideo

    {
      return;
    }
    if (player.getActiveSubClass().isBase() || player.getActiveSubClass().isDouble())
    {
      player.sendPacket(new ExShowUsmVideo(ExShowUsmVideo.Q010));
      player.sendPacket(new ExCallToChangeClass(_CA.get(player.getClassId().getId()), true));
    }
  } 
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExShowUsmVideo

    }
    else if (event.equalsIgnoreCase("3-3.htm"))
    {
      st.setCond(6);
      st.playSound(SOUND_MIDDLE);
      player.sendPacket(new ExShowUsmVideo(ExShowUsmVideo.Q003));
    }
    else if (event.equalsIgnoreCase("2-3.htm"))
    {
      htmltext = "2-3.htm";
      st.playSound(SOUND_MIDDLE);
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExShowUsmVideo

            ThreadPoolManager.getInstance().schedule(new RunnableImpl()
            {
              @Override
              public void runImpl()
              {
                player.sendPacket(new ExShowUsmVideo(ExShowUsmVideo.Q010));
              }
            }, 15000);
          }
          return;
        }
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.