GetOffVehicle.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. @Override
  50. protected void writeImpl()
  51. {
  52. if (_boat == null || _activeChar == null) return;
  53. writeC(0x6f);
  54. writeD(_activeChar.getObjectId());
  55. writeD(_boat.getObjectId());
  56. writeD(_x);
  57. writeD(_y);
  58. writeD(_z);
  59. }
  60. @Override
  61. public String getType()
  62. {
  63. return "[S] 6f GetOffVehicle";
  64. }
  65. }