// http://example.com/log.txtに1秒おきにアクセスする

while true
 Http = CreateOLEObj("Microsoft.XMLHTTP")
 URL = "http://example.com/log.txt";
 Http.Open("GET",URL,0)
 Http.Send
 Http.responseText

 sleep(1)
wend