Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. package net.sf.l2j.gameserver.network.serverpackets;
  2.  
  3. /**
  4. * The Class BrowserPopUp.
  5. */
  6. public final class BrowserPopUp extends L2GameServerPacket
  7. {
  8.  
  9. /** The Constant _S__135_BrowserPopUp. */
  10. private static final String _S__135_BrowserPopUp = "[S] 8D BrowserPopUp";
  11.  
  12. /** The url manage. */
  13. public static String urlManage;
  14.  
  15. /** The obj. */
  16. public static BrowserPopUp obj = new BrowserPopUp(urlManage);
  17.  
  18. /**
  19. * Instantiates a new browser pop up.
  20. *
  21. * @param url
  22. * the url
  23. */
  24. public BrowserPopUp(String url) {
  25. urlManage = url;
  26. }
  27.  
  28. /*
  29. * (non-Javadoc)
  30. *
  31. * @see
  32. * net.sf.l2j.gameserver.network.serverpackets.L2GameServerPacket#writeImpl()
  33. */
  34. @Override
  35. protected void writeImpl()
  36. {
  37. writeC(0x8D);
  38. writeS(urlManage);
  39. }
  40.  
  41. /*
  42. * (non-Javadoc)
  43. *
  44. * @see net.sf.l2j.gameserver.serverpackets.ServerBasePacket#getType()
  45. */
  46. @Override
  47. public String getType()
  48. {
  49. return _S__135_BrowserPopUp;
  50. }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement