View Single Post
Old 26-05-2007, 08:45 PM   #541
burt777
Newbie

 
Join Date: Jan 2007
Location: Hilversum, Netherlands
Posts: 7
Default

Hey everybody! I was nerding around a little and made a little batch file that i keep running on my 2nd monitor. It shows me the times at which i saved. The game lists gametime with all the saved games, but i found it really annoying that i keep forgetting (damn weed (-: ) which game i saved last. The list refreshes every 15 seconds and assumes your dos recognizes the Choice-Command. (If it doesn't, you can get choice.com or replace the last line with a ping command or something, which will look less nice.)

Code:
:start
CLS
@echo Game 1:
@dir game_1\up.dat |find "UP.DAT"
@echo Game 2:
@dir game_2\up.dat |find "UP.DAT"
@echo Game 3:
@dir game_3\up.dat |find "UP.DAT"
@echo Game 4:
@dir game_4\up.dat |find "UP.DAT"
@echo Game 5:
@dir game_5\up.dat |find "UP.DAT"
@echo Game 6:
@dir game_6\up.dat |find "UP.DAT"
@echo Game 7:
@dir game_7\up.dat |find "UP.DAT"
@echo Game 8:
@dir game_8\up.dat |find "UP.DAT"
@echo Game 9:
@dir game_9\up.dat |find "UP.DAT"
@echo Game 10:
@dir game_10\up.dat |find "UP.DAT"
:pausie
@echo** (press n to break cycle)
@choice /t:Y,15 /n
@if not errorlevel 2 goto start
Just copy paste and save as a batchfile in the game directory and dubbleclick.
burt777 is offline                         Send a private message to burt777
Reply With Quote