GetOffVehicle.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package com.l2jserver.gameserver.network.serverpackets;
  16. import com.l2jserver.gameserver.model.actor.instance.L2BoatInstance;
  17. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  18. /**
  19. * @author Maktakien
  20. *
  21. */
  22. public class GetOffVehicle extends L2GameServerPacket
  23. {
  24. private int _x;
  25. private int _y;
  26. private int _z;
  27. private L2PcInstance _activeChar;
  28. private L2BoatInstance _boat;
  29. /**
  30. * @param activeChar
  31. * @param boat
  32. * @param x
  33. * @param y
  34. * @param z
  35. */
  36. public GetOffVehicle(L2PcInstance activeChar, L2BoatInstance boat, int x, int y, int z)
  37. {
  38. _activeChar = activeChar;
  39. _boat = boat;
  40. _x = x;
  41. _y = y;
  42. _z = z;
  43. if (_activeChar != null)
  44. {
  45. _activeChar.setInBoat(false);
  46. _activeChar.setBoat(null);
  47. }
  48. }
  49. /* (non-Javadoc)
  50. * @see com.l2jserver.gameserver.serverpackets.ServerBasePacket#writeImpl()
  51. */
  52. @Override
  53. protected void writeImpl()
  54. {
  55. if (_boat == null || _activeChar == null) return;
  56. writeC(0x6f);
  57. writeD(_activeChar.getObjectId());
  58. writeD(_boat.getObjectId());
  59. writeD(_x);
  60. writeD(_y);
  61. writeD(_z);
  62. }
  63. /* (non-Javadoc)
  64. * @see com.l2jserver.gameserver.BasePacket#getType()
  65. */
  66. @Override
  67. public String getType()
  68. {
  69. // TODO Auto-generated method stub
  70. return "[S] 6f GetOffVehicle";
  71. }
  72. }