Advertisement
Grinya90

messenger(получение)

Jan 9th, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.29 KB | None | 0 0
  1. #NoTrayIcon
  2. UDPStartup()
  3. $socket = UDPBind("0.0.0.0", 54321)
  4. While True
  5.     $udprecv = UDPRecv($socket, 2048)
  6.     If $udprecv <> "" Then
  7.         $udprecv = BinaryToString($udprecv)
  8.         MsgBox(0, "ПОЛУЧЕНО СООБЩЕНИЕ", $udprecv)
  9.     EndIf
  10.     Sleep(100)
  11. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement