Facebook
From v8, 1 Year ago, written in C.
This paste is a reply to Ip Pinger Code from Timeout - view diff
Embed
Download Paste or View Raw
Hits: 165
  1. set /p IP=Enter Ips To Ping:45.50.244.110
  2.  
  3. :top
  4. PING -n 1 %IP% | FIND "TTL="
  5. title :: Pinging: %IP% ::
  6. IF ERRORLEVEL 1 (echo Downed.  )
  7. set /a num=(%Random%%%9)+1
  8. color %num%
  9. ping -t 2 0 10 127.0.0.1 >nul
  10. GoTo top