Advertisement
Guest User

Untitled

a guest
Feb 27th, 2013
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. REM PlanetSide 2 Ping Tester by Sh4rkill3rSG, Martok
  3. echo Australia: Paddington, New South Wales
  4. call :GetPingMillis 69.174.220.23
  5. echo - (AU) Briggs:          %ms%
  6. echo ============================== && echo.Europa: Amsterdam, Holanda
  7. call :GetPingMillis 195.33.132.169
  8. echo - (EU) Ceres:           %ms%
  9. call :GetPingMillis 195.33.132.169
  10. echo - (EU) Cobalt:          %ms%
  11. call :GetPingMillis 195.33.132.168
  12. echo - (EU) Lithcorp:        %ms%
  13. call :GetPingMillis 195.33.132.168
  14. echo - (EU) Mallory:         %ms%
  15. call :GetPingMillis 195.33.132.172
  16. echo - (EU) Miller:          %ms%
  17. call :GetPingMillis 195.33.132.169
  18. echo - (EU) Woodman:         %ms%
  19. echo ============================== && echo.US West: San Diego, California
  20. call :GetPingMillis 64.37.174.140
  21. echo - (US West) Connery:    %ms%
  22. call :GetPingMillis 64.37.174.143
  23. echo - (US West) Genudine:   %ms%
  24. call :GetPingMillis 64.37.174.140
  25. echo - (US West) Helios:     %ms%
  26. echo ============================== && echo.US East: Ashburn, Virginia
  27. call :GetPingMillis 199.108.194.38
  28. echo - (US East) Jaeger:     %ms%
  29. call :GetPingMillis 199.108.194.38
  30. echo - (US East) Mattherson: %ms%
  31. call :GetPingMillis 199.108.194.39
  32. echo - (US East) SolTech:    %ms%
  33. call :GetPingMillis 199.108.194.41
  34. echo - (US East) Waterson:   %ms%
  35. echo ==============================
  36. pause
  37. goto :eof
  38.  
  39. :GetPingMillis
  40. FOR /F "tokens=4 delims==" %%i in ('ping -n 1 %1') do set ms=%%i
  41. set ms=%ms:~1%
  42. goto :eof
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement