AI for Ivory Tower teleport zones.

This commit is contained in:
MobiusDevelopment 2021-09-30 06:56:20 +00:00
parent c25e9d4964
commit c13ffa5876

View File

@ -0,0 +1,99 @@
/*
* This file is part of the L2J Mobius project.
*
* 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 ai.areas.Hellbound;
import java.util.Calendar;
import org.l2jmobius.commons.concurrent.ThreadPool;
import org.l2jmobius.commons.util.Chronos;
import org.l2jmobius.gameserver.instancemanager.ZoneManager;
import org.l2jmobius.gameserver.model.zone.ZoneType;
import ai.AbstractNpcAI;
/**
* @author Mobius
*/
public class IvoryTowerTeleportZones extends AbstractNpcAI
{
private static final String[] ZONE_NAMES =
{
"hellbound_tp_1",
"hellbound_tp_2",
"hellbound_tp_3",
"hellbound_tp_4"
};
private IvoryTowerTeleportZones()
{
final Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 0);
calendar.set(Calendar.MINUTE, 0);
// Current day check.
if (calendar.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY)
{
enableZones();
}
else
{
disableZones();
}
// Schedule task to check if it is Saturday.
ThreadPool.scheduleAtFixedRate(() ->
{
if (Calendar.getInstance().get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY)
{
enableZones();
}
else
{
disableZones();
}
}, (calendar.getTimeInMillis() + 86400000) - Chronos.currentTimeMillis(), 86400000); // Check every 24 hours.
}
private void enableZones()
{
for (String name : ZONE_NAMES)
{
final ZoneType zone = ZoneManager.getInstance().getZoneByName(name);
if (zone != null)
{
zone.setEnabled(true);
}
}
}
private void disableZones()
{
for (String name : ZONE_NAMES)
{
final ZoneType zone = ZoneManager.getInstance().getZoneByName(name);
if (zone != null)
{
zone.setEnabled(false);
}
}
}
public static void main(String[] args)
{
new IvoryTowerTeleportZones();
}
}