123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * Copyright (C) 2004-2015 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack 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.
- *
- * L2J DataPack 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 gracia.AI;
- import java.util.Calendar;
- import java.util.GregorianCalendar;
- import ai.npc.AbstractNpcAI;
- import com.l2jserver.gameserver.datatables.SpawnTable;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.clientpackets.Say2;
- /**
- * Lindvior Scene AI.
- * @author nonom
- */
- public class Lindvior extends AbstractNpcAI
- {
- private static final int LINDVIOR_CAMERA = 18669;
- private static final int TOMARIS = 32552;
- private static final int ARTIUS = 32559;
-
- private static int LINDVIOR_SCENE_ID = 1;
-
- private static final int RESET_HOUR = 18;
- private static final int RESET_MIN = 58;
- private static final int RESET_DAY_1 = Calendar.TUESDAY;
- private static final int RESET_DAY_2 = Calendar.FRIDAY;
-
- private static boolean ALT_MODE = false;
- private static int ALT_MODE_MIN = 60; // schedule delay in minutes if ALT_MODE enabled
-
- private L2Npc _lindviorCamera = null;
- private L2Npc _tomaris = null;
- private L2Npc _artius = null;
-
- public Lindvior()
- {
- super(Lindvior.class.getSimpleName(), "gracia/AI");
- scheduleNextLindviorVisit();
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- switch (event)
- {
- case "tomaris_shout1":
- broadcastNpcSay(npc, Say2.NPC_SHOUT, NpcStringId.HUH_THE_SKY_LOOKS_FUNNY_WHATS_THAT);
- break;
- case "artius_shout":
- broadcastNpcSay(npc, Say2.NPC_SHOUT, NpcStringId.A_POWERFUL_SUBORDINATE_IS_BEING_HELD_BY_THE_BARRIER_ORB_THIS_REACTION_MEANS);
- break;
- case "tomaris_shout2":
- broadcastNpcSay(npc, Say2.NPC_SHOUT, NpcStringId.BE_CAREFUL_SOMETHINGS_COMING);
- break;
- case "lindvior_scene":
- if (npc != null)
- {
- for (L2PcInstance pl : npc.getKnownList().getKnownPlayersInRadius(4000))
- {
- if ((pl.getZ() >= 1100) && (pl.getZ() <= 3100))
- {
- pl.showQuestMovie(LINDVIOR_SCENE_ID);
- }
- }
- }
- break;
- case "start":
- _lindviorCamera = SpawnTable.getInstance().findAny(LINDVIOR_CAMERA).getLastSpawn();
- _tomaris = SpawnTable.getInstance().findAny(TOMARIS).getLastSpawn();
- _artius = SpawnTable.getInstance().findAny(ARTIUS).getLastSpawn();
-
- startQuestTimer("tomaris_shout1", 1000, _tomaris, null);
- startQuestTimer("artius_shout", 60000, _artius, null);
- startQuestTimer("tomaris_shout2", 90000, _tomaris, null);
- startQuestTimer("lindvior_scene", 120000, _lindviorCamera, null);
- scheduleNextLindviorVisit();
- break;
- }
- return super.onAdvEvent(event, npc, player);
- }
-
- public void scheduleNextLindviorVisit()
- {
- long delay = (ALT_MODE) ? ALT_MODE_MIN * 60000 : scheduleNextLindviorDate();
- startQuestTimer("start", delay, null, null);
- }
-
- protected long scheduleNextLindviorDate()
- {
- GregorianCalendar date = new GregorianCalendar();
- date.set(Calendar.MINUTE, RESET_MIN);
- date.set(Calendar.HOUR_OF_DAY, RESET_HOUR);
- if (System.currentTimeMillis() >= date.getTimeInMillis())
- {
- date.add(Calendar.DAY_OF_WEEK, 1);
- }
-
- int dayOfWeek = date.get(Calendar.DAY_OF_WEEK);
- if (dayOfWeek <= RESET_DAY_1)
- {
- date.add(Calendar.DAY_OF_WEEK, RESET_DAY_1 - dayOfWeek);
- }
- else if (dayOfWeek <= RESET_DAY_2)
- {
- date.add(Calendar.DAY_OF_WEEK, RESET_DAY_2 - dayOfWeek);
- }
- else
- {
- date.add(Calendar.DAY_OF_WEEK, 1 + RESET_DAY_1);
- }
- return date.getTimeInMillis() - System.currentTimeMillis();
- }
- }
|