Transcendent zones renamed to timed hunting.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<instance id="1013" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
|
||||
<instance id="1013" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/instance.xsd">
|
||||
<locations>
|
||||
<enter type="FIXED">
|
||||
<location x="90327" y="198818" z="-3280" />
|
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<instance id="1007" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
|
||||
<instance id="1007" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/instance.xsd">
|
||||
<locations>
|
||||
<enter type="FIXED">
|
||||
<location x="-122259" y="73678" z="-2872" />
|
@@ -14,7 +14,7 @@
|
||||
* 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 instances.TranscendentZone;
|
||||
package instances.TimedHunting;
|
||||
|
||||
import org.l2jmobius.gameserver.data.xml.TimedHuntingZoneData;
|
||||
import org.l2jmobius.gameserver.instancemanager.InstanceManager;
|
||||
@@ -28,7 +28,7 @@ import instances.AbstractInstance;
|
||||
/**
|
||||
* @author Mobius
|
||||
*/
|
||||
public class TranscendentZone extends AbstractInstance
|
||||
public class TimedHunting extends AbstractInstance
|
||||
{
|
||||
// NPCs
|
||||
private static final int PATROL_TELEPORTER = 34568;
|
||||
@@ -40,7 +40,7 @@ public class TranscendentZone extends AbstractInstance
|
||||
1013 // Corroded Fields
|
||||
};
|
||||
|
||||
public TranscendentZone()
|
||||
public TimedHunting()
|
||||
{
|
||||
super(TEMPLATE_IDS);
|
||||
addStartNpc(PATROL_TELEPORTER, PATROL_GUARD);
|
||||
@@ -89,6 +89,6 @@ public class TranscendentZone extends AbstractInstance
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TranscendentZone();
|
||||
new TimedHunting();
|
||||
}
|
||||
}
|
@@ -154,9 +154,9 @@ public class ExTimedHuntingZoneEnter implements IClientIncomingPacket
|
||||
{
|
||||
player.teleToLocation(holder.getEnterLocation());
|
||||
}
|
||||
else // Transcendent zones.
|
||||
else // Instanced zones.
|
||||
{
|
||||
QuestManager.getInstance().getQuest("TranscendentZone").notifyEvent("ENTER " + _zoneId, null, player);
|
||||
QuestManager.getInstance().getQuest("TimedHunting").notifyEvent("ENTER " + _zoneId, null, player);
|
||||
}
|
||||
|
||||
// Close window.
|
||||
|
Reference in New Issue
Block a user