This commit is contained in:
mobius
2015-01-01 20:02:50 +00:00
parent eeae660458
commit a6a3718849
17894 changed files with 2818932 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<html><body>Airship Controller:<br>
You see a floating piece of stone filled with a mysterious power. The green light is flashing, so there doesn't appear to be anything wrong with its function.<br><br>
By manipulating this, you should be able to control the Airship.<br>
<a action="bypass -h Quest KeucereusSouthController board">Board the Airship.</a><br>
<a action="bypass -h Quest KeucereusSouthController summon">Summon the Airship.</a><br>
<a action="bypass -h Quest KeucereusSouthController register">Register summoning license.</a><br>
<a action="bypass -h npc_%objectId%_Quest">Quest</a>
</body></html>

View File

@@ -0,0 +1,97 @@
/*
* Copyright (C) 2004-2014 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.vehicles.KeucereusSouthController;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.VehiclePathPoint;
import gracia.vehicles.AirShipController;
public final class KeucereusSouthController extends AirShipController
{
private static final int DOCK_ZONE = 50603;
private static final int LOCATION = 100;
private static final int CONTROLLER_ID = 32517;
private static final VehiclePathPoint[] ARRIVAL =
{
new VehiclePathPoint(-185312, 246544, 2500),
new VehiclePathPoint(-185312, 246544, 1336)
};
private static final VehiclePathPoint[] DEPART =
{
new VehiclePathPoint(-185312, 246544, 1700, 280, 2000),
new VehiclePathPoint(-186900, 251699, 1700, 280, 2000)
};
private static final VehiclePathPoint[][] TELEPORTS =
{
{
new VehiclePathPoint(-185312, 246544, 1700, 280, 2000),
new VehiclePathPoint(-186900, 251699, 1700, 280, 2000),
new VehiclePathPoint(-186373, 234000, 2500, 0, 0)
},
{
new VehiclePathPoint(-185312, 246544, 1700, 280, 2000),
new VehiclePathPoint(-186900, 251699, 1700, 280, 2000),
new VehiclePathPoint(-206692, 220997, 3000, 0, 0)
},
{
new VehiclePathPoint(-185312, 246544, 1700, 280, 2000),
new VehiclePathPoint(-186900, 251699, 1700, 280, 2000),
new VehiclePathPoint(-235693, 248843, 5100, 0, 0)
}
};
private static final int[] FUEL =
{
0,
50,
100
};
public KeucereusSouthController()
{
super(-1, KeucereusSouthController.class.getSimpleName(), "gracia/vehicles");
addStartNpc(CONTROLLER_ID);
addFirstTalkId(CONTROLLER_ID);
addTalkId(CONTROLLER_ID);
_dockZone = DOCK_ZONE;
addEnterZoneId(DOCK_ZONE);
addExitZoneId(DOCK_ZONE);
_shipSpawnX = -184527;
_shipSpawnY = 243611;
_shipSpawnZ = 3000;
_locationId = LOCATION;
_arrivalPath = ARRIVAL;
_departPath = DEPART;
_teleportsTable = TELEPORTS;
_fuelTable = FUEL;
_oustLoc = new Location(-186148, 246296, 1360);
_movieId = 1000;
validityCheck();
}
}