activeChar._stablePoint = activeChar.getLoc().setH(0);
L2AirShip airship = (L2AirShip) cha;
activeChar.setInVehiclePosition(new Location());
activeChar.setLoc(airship.getLoc());
activeChar.setVehicle(airship);
activeChar.broadcastPacket(new ExGetOnAirShip(activeChar, airship, activeChar.getInVehiclePosition()));
break;
}
}
break;
case admin_airship_invite:
if(activeChar.getVehicle() == null)
{
break;
}
L2Player target = null;
L2Object obj = activeChar.getTarget();
if(obj != null && obj.isPlayer())
{
target = (L2Player) obj;
L2AirShip airship = (L2AirShip) activeChar.getVehicle();
target.setInVehiclePosition(new Location());
target.setLoc(airship.getLoc());
target.setVehicle(airship);
target.broadcastPacket(new ExGetOnAirShip(target, airship, target.getInVehiclePosition()));
}
break;
case admin_airship_remove:
for(L2Character cha : L2World.getAroundCharacters(activeChar, 1000, 1000))
{