Support for time limited zones.

This commit is contained in:
MobiusDevelopment
2020-01-03 16:30:59 +00:00
parent 7fd4c6e159
commit eae968d570
23 changed files with 1707 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
<html><body>Investigators Guard:<br>
There are many dangerous monsters outside the camps. Don't let your guard down.
</body></html>

View File

@@ -0,0 +1,3 @@
<html><body>Investigators Guard:<br>
There are many dangerous monsters outside the camps. Don't let your guard down.
</body></html>

View File

@@ -24,6 +24,7 @@ import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
import org.l2jmobius.gameserver.model.zone.type.RespawnZone;
import org.l2jmobius.gameserver.network.SystemMessageId;
import org.l2jmobius.gameserver.network.serverpackets.SystemMessage;
import org.l2jmobius.gameserver.network.serverpackets.sessionzones.TimedHuntingZoneEnter;
/**
* Loc user command.
@@ -66,6 +67,8 @@ public class Loc implements IUserCommandHandler
sm.addString(player.getX() + ", " + player.getY() + ", " + player.getZ());
}
player.sendPacket(sm);
player.sendPacket(new TimedHuntingZoneEnter(1));
return true;
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/teleporterData.xsd">
<npc id="34529"> <!-- Investigators Teleporter -->
<teleport type="OTHER">
<location x="194276" y="176595" z="-1888" /> <!-- Eastern Camp -->
<location x="167989" y="187546" z="-2232" /> <!-- Western Camp -->
<location x="191000" y="188118" z="-2656" /> <!-- Southern Camp -->
<location x="177925" y="172948" z="-2008" /> <!-- Northern Camp -->
</teleport>
</npc>
</list>