1.

Solve : Fast countdown timer for a batch game... ??

Answer»

Hey guys! I was FINALLY able to get the save and load to function PROPERLY. Now, I need help making a quick countdown timer (quick as in wait time is no more than a minute(I'd prefer to have it in milliseconds, or something smaller than a second.))for when the player's character is mining. The wait time would decrease as they level up. Any thoughts?A plain BATCH solution - change the value of the delay variable

Code: [SELECT]echo off
echo %time%
SET delay=1500000
for /L %%a in (1,1,%delay%) do rem
echo %time%
pause



Discussion

No Comment Found