Package quests

Source Code of quests._461_RumbleInTheBase

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package quests;

import lineage2.gameserver.model.instances.NpcInstance;
import lineage2.gameserver.model.quest.Quest;
import lineage2.gameserver.model.quest.QuestState;
import lineage2.gameserver.scripts.ScriptFile;

import org.apache.commons.lang3.ArrayUtils;

public class _461_RumbleInTheBase extends Quest implements ScriptFile
{
  private static final int Stan = 30200;
  private static final int ShoesStringofSelMahum = 16382;
  private static final int ShinySalmon = 15503;
  private static final int[] SelMahums =
  {
    22786,
    22787,
    22788
  };
  private static final int SelChef = 18908;
 
  public _461_RumbleInTheBase()
  {
    super(false);
    addStartNpc(Stan);
    addQuestItem(ShoesStringofSelMahum, ShinySalmon);
    addKillId(SelMahums);
    addKillId(SelChef);
  }
 
  @Override
  public String onEvent(String event, QuestState st, NpcInstance npc)
  {
    String htmltext = event;
    if (event.equalsIgnoreCase("stan_q461_03.htm"))
    {
      st.setState(STARTED);
      st.setCond(1);
      st.playSound(SOUND_ACCEPT);
    }
    return htmltext;
  }
 
  @Override
  public String onTalk(NpcInstance npc, QuestState st)
  {
    String htmltext = "noquest";
    int cond = st.getCond();
    if (npc.getNpcId() == Stan)
    {
      switch (st.getState())
      {
        case CREATED:
          QuestState qs = st.getPlayer().getQuestState(_252_GoodSmell.class);
          if ((st.getPlayer().getLevel() >= 82) && (qs != null) && qs.isCompleted())
          {
            if (st.isNowAvailableByTime())
            {
              htmltext = "stan_q461_01.htm";
            }
            else
            {
              htmltext = "stan_q461_00a.htm";
            }
          }
          else
          {
            htmltext = "stan_q461_00.htm";
          }
          break;
        case STARTED:
          if (cond == 1)
          {
            htmltext = "stan_q461_04.htm";
          }
          else if (cond == 2)
          {
            htmltext = "stan_q461_05.htm";
            st.takeAllItems(ShoesStringofSelMahum);
            st.takeAllItems(ShinySalmon);
            st.addExpAndSp(224784, 342528);
            st.setState(COMPLETED);
            st.playSound(SOUND_FINISH);
            st.exitCurrentQuest(this);
          }
          break;
      }
    }
    return htmltext;
  }
 
  @Override
  public String onKill(NpcInstance npc, QuestState st)
  {
    int cond = st.getCond();
    int npcId = npc.getNpcId();
    if (cond == 1)
    {
      if ((st.getQuestItemsCount(ShoesStringofSelMahum) < 10) && (st.getQuestItemsCount(ShinySalmon) < 5))
      {
        if ((st.getQuestItemsCount(ShoesStringofSelMahum) < 10) && ArrayUtils.contains(SelMahums, npcId))
        {
          st.rollAndGive(ShoesStringofSelMahum, 1, 20);
        }
        if ((st.getQuestItemsCount(ShinySalmon) < 5) && (npcId == SelChef))
        {
          st.rollAndGive(ShinySalmon, 1, 10);
        }
      }
      else
      {
        st.setCond(2);
      }
    }
    return null;
  }
 
  @Override
  public void onLoad()
  {
  }
 
  @Override
  public void onReload()
  {
  }
 
  @Override
  public void onShutdown()
  {
  }
}
TOP

Related Classes of quests._461_RumbleInTheBase

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.