Examples of playTutorialVoice()


Examples of l2p.gameserver.model.quest.QuestState.playTutorialVoice()

      {
        return "";
      }
      if(player.getClassId().isMage() && !player.getClassId().equalsOrChildOf(ClassId.orcMage))
      {
        qs.playTutorialVoice("tutorial_voice_027");
        qs.giveItems(SPIRITSHOT_NOVICE, 100);
      }
      else
      {
        qs.playTutorialVoice("tutorial_voice_026");
View Full Code Here

Examples of l2p.gameserver.model.quest.QuestState.playTutorialVoice()

        qs.playTutorialVoice("tutorial_voice_027");
        qs.giveItems(SPIRITSHOT_NOVICE, 100);
      }
      else
      {
        qs.playTutorialVoice("tutorial_voice_026");
        qs.giveItems(SOULSHOT_NOVICE, 200);
      }
      int SCROLL_RECOVERY = 8594;
      qs.giveItems(SCROLL_RECOVERY, 2);
      qs.exitCurrentQuest(false);
View Full Code Here

Examples of lineage2.gameserver.model.quest.QuestState.playTutorialVoice()

            qs.set("Ex", "3");
            st.startQuestTimer("TimerEx_NewbieHelper", 30000);
            qs.set("ucMemo", "3");
            if (isMage)
            {
              st.playTutorialVoice("tutorial_voice_027");
              st.giveItems(SPIRITSHOT_NOVICE, 100);
              htmltext = t.htmlfiles[2];
              if (htmltext.isEmpty())
              {
                htmltext = "<html><body>" + (npc.getTitle().isEmpty() ? "" : npc.getTitle() + " ") + npc.getName() + "<br>I am sorry. I only help warriors. Please go to another Newbie Helper who may assist you.</body></html>";
View Full Code Here

Examples of lineage2.gameserver.model.quest.QuestState.playTutorialVoice()

                htmltext = "<html><body>" + (npc.getTitle().isEmpty() ? "" : npc.getTitle() + " ") + npc.getName() + "<br>I am sorry. I only help warriors. Please go to another Newbie Helper who may assist you.</body></html>";
              }
            }
            else
            {
              st.playTutorialVoice("tutorial_voice_026");
              st.giveItems(SOULSHOT_NOVICE, 200);
              htmltext = t.htmlfiles[1];
              if (htmltext.isEmpty())
              {
                htmltext = "<html><body>" + (npc.getTitle().isEmpty() ? "" : npc.getTitle() + " ") + npc.getName() + "<br>I am sorry. I only help mystics. Please go to another Newbie Helper who may assist you.</body></html>";
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.