For those of you using a manual faucet and who often forget that it's time to click, here's a simple script you can use:
- Open Notepad.
- Paste the following script in:
Dim t: t = 20 * 60 * 1000
do
msgbox "Time is up"
WScript.Sleep(t)
loop - Change the 20 in the first line to the number of minutes you want.
- Save the file with a .vbs extension, for example, "Timer.vbs".
- Run the script. It will pop up for the first time, then once you click OK or exit, the timer will start and it will continue to pop up every so often (as specified).
If you want to stop the pop-ups:
The next time the pop-up appears, enter the Task Manager (Ctrl+Shift+Esc for Windows users), click on the Microsoft Windows Based Script Host, and click on the End task button.