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