Guest User

Untitled

a guest
Oct 1st, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  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.  
  16. package com.l2jfrozen.gameserver.network.serverpackets;
  17.  
  18. import com.l2jfrozen.gameserver.model.actor.instance.L2FenceInstance;
  19.  
  20. public class ExColosseumFenceInfoPacket extends L2GameServerPacket
  21. {
  22. private static final String _S__FE_03_EXCOLOSSEUMFENCEINFOPACKET = "[S] FE:03 ExColosseumFenceInfoPacket";
  23. private L2FenceInstance _fence;
  24.  
  25. public ExColosseumFenceInfoPacket(L2FenceInstance fence)
  26. {
  27. _fence = fence;
  28. }
  29.  
  30. @Override
  31. protected void writeImpl()
  32. {
  33. writeC(0xfe);
  34. writeH(0x09);
  35.  
  36. writeD(_fence.getObjectId());
  37. writeD(_fence.getType());
  38. writeD(_fence.getX());
  39. writeD(_fence.getY());
  40. writeD(_fence.getZ());
  41. writeD(_fence.getWidth());
  42. writeD(_fence.getLength());
  43. }
  44.  
  45. @Override
  46. public String getType()
  47. {
  48. return _S__FE_03_EXCOLOSSEUMFENCEINFOPACKET;
  49. }
  50. }
Add Comment
Please, Sign In to add comment