Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1.  
  2. RalseiToday at 8:11 PM
  3. u use
  4. darkToday at 8:11 PM
  5. us
  6. central 1 a
  7. RalseiToday at 8:12 PM
  8. try singapore????
  9. or other
  10. darkToday at 8:12 PM
  11. why
  12. RalseiToday at 8:13 PM
  13. fp maybe better
  14. just maybe k
  15. darkToday at 8:18 PM
  16.  
  17. 100% DDOS
  18. cpu/network thing same time hight
  19. shiroToday at 8:22 PM
  20. omg
  21. i want to die
  22. i almost wasted 499 sar
  23. my hair had water and i wear headphone
  24. omg
  25. rip
  26. RalseiToday at 8:28 PM
  27. turn off
  28. vps
  29. @dark
  30. RalseiToday at 8:40 PM
  31. i try make proxy for gps
  32. shiroToday at 9:00 PM
  33. @dark do u have mc open ?
  34. if yes check how to unlock first strike
  35. book
  36. darkToday at 9:00 PM
  37. already get
  38. shiroToday at 9:00 PM
  39. how to make
  40. what needed ?
  41. darkToday at 9:01 PM
  42. i mean my sword have
  43. shiroToday at 9:01 PM
  44. i need lifesteal firststrike exp 3
  45. i bought ember rod and i want put all enchant that need tons level
  46. already used 500+ level
  47. darkToday at 9:01 PM
  48. @shiro pigman sword strongest?
  49. shiroToday at 9:03 PM
  50. yes
  51. RalseiToday at 9:06 PM
  52. 00f
  53. udp proxy
  54. we can make proxy for gt bot
  55. shiroToday at 9:06 PM
  56. wtf
  57. GO MAKE
  58. GO
  59. @Ralsei
  60. MAKE
  61. IF U MAKE = WE CAN OPEN GT BOT AND NO MOD FIND US
  62. RalseiToday at 9:06 PM
  63. ik
  64. but
  65. @shiro
  66. shiroToday at 9:06 PM
  67. ??
  68. RalseiToday at 9:06 PM
  69. u know where freenodejs hosting
  70. ?
  71. shiroToday at 9:06 PM
  72. i go check
  73. RalseiToday at 9:07 PM
  74. if tere free node js hosting
  75. can make
  76. var proxy = require('udp-proxy'),
  77. options = {
  78. address: "209.59.190.105",
  79. port: 17092,
  80. ipv6: false,
  81. localaddress: '0.0.0.0',
  82. localport: 3000,
  83. localipv6: false,
  84. proxyaddress: '0.0.0.0',
  85. timeOutTime: 1000
  86. };
  87.  
  88. // This is the function that creates the server, each connection is handled internally
  89. var server = proxy.createServer(options);
  90.  
  91. // this should be obvious
  92. server.on('listening', function (details) {
  93. console.log('DNS - IPv4 to IPv6 proxy }>=<{ by: ok 2012');
  94. console.log('udp-proxy-server ready on ' + details.server.family + ' ' + details.server.address + ':' + details.server.port);
  95. console.log('traffic is forwarded to ' + details.target.family + ' ' + details.target.address + ':' + details.target.port);
  96. });
  97.  
  98. // 'bound' means the connection to server has been made and the proxying is in action
  99. server.on('bound', function (details) {
  100. console.log('proxy is bound to ' + details.route.address + ':' + details.route.port);
  101. console.log('peer is bound to ' + details.peer.address + ':' + details.peer.port);
  102. });
  103.  
  104. // 'message' is emitted when the server gets a message
  105. server.on('message', function (message, sender) {
  106. console.log('message from ' + sender.address + ':' + sender.port);
  107. });
  108.  
  109. // 'proxyMsg' is emitted when the bound socket gets a message and it's send back to the peer the socket was bound to
  110. server.on('proxyMsg', function (message, sender, peer) {
  111. console.log('answer from ' + sender.address + ':' + sender.port);
  112. });
  113.  
  114. // 'proxyClose' is emitted when the socket closes (from a timeout) without new messages
  115. server.on('proxyClose', function (peer) {
  116. console.log('disconnecting socket from ' + peer.address);
  117. });
  118.  
  119. server.on('proxyError', function (err) {
  120. console.log('ProxyError! ' + err);
  121. });
  122.  
  123. server.on('error', function (err) {
  124. console.log('Error! ' + err);
  125. });
  126.  
  127. console.log("Started?");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement