Advertisement
Guest User

OSRS ping

a guest
Jun 15th, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. @ECHO off
  2.  
  3. :loop
  4.  
  5. SET world=InsertWorldHere
  6.  
  7. FOR %%i IN (%world%) DO (
  8. Echo | SET /p=World %%i
  9. FOR /F "tokens=5" %%a IN ('Ping oldschool%%i.runescape.com -n 1 ^| FIND "time="') DO Echo %%a
  10. )
  11. timeout /t 1
  12. Goto loop
  13.  
  14. //Paste into notepad. On Line 5, replace "InsertWorldHere" with your world. Updates every 1 sec, to change this change the number after "timeout /t" to however many seconds you want. Can see multiple worlds by separating them with a comma and no space (1,2,17,38,...). Save as a .bat file and run to see your ping.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement