ok, i got it to work pretty well, i think. i'll need some help testing it. i'll paste the source below, and everybody who wnats to help test it can post here or send a pm with an ip to ping. i'll compile a version for him/her then.
CLS
PRINT " to end this program, press ctrl+break, all pings will be saved."
ping:
SHELL "ping 192.168.0.2 -n 1 > TIME.txt"
dump:
OPEN "time.txt" FOR INPUT AS #1
OPEN "log.txt" FOR APPEND AS #2
DO
INPUT #1, temp$
PRINT #2, temp$
LOOP UNTIL EOF(1)
PRINT #2, TIME$
CLOSE
hold:
SLEEP 300
GOTO ping
edit:
ok, something new, i suggest you exit this program NOT by using ctrl+brake, but by using alt+f4, ctrl+alt+del or something else using windowes, since pressing any key will result n another ping added to the list. if anybody knows how to solve this, i am all ears.