Thanks for the tip! I'll try that.
I haven't made a bat file since windows 98 days. I remember one called the mesquito cream virus that I loaded into the the highschool computer lab... Ahh those were the days!
Anyways looks like people are already dropping out, latest payout went up from ~17 to 18.382353
This is my example, edit for your connection:
@echo off
echo %date% %time% - Started.>> pinger.log
set link="your link name"
set login="login if exist"
set pass="pass"
set host=google.com
set TimeoutMin=1000
set TimeoutMax=10000
set Try=1
set MinPing=2
set MaxPing=4
set StartCounter=1
rem CONNECT
:connect
rasdial %link% %login% %pass%
goto ping
rem PING
:ping
rem pause
ping -n 30 127.0.0.1 > nul
echo.
echo START PING #%Try%
ping %host% -n 1 -w %TimeoutMin%
if not errorlevel 1 goto ping
set /a Try=%Try%+1
if %Try% gtr %MinPing% goto ForcePing
goto ping
rem FORCEPING
:ForcePing
echo.
echo START FORCE PING #%Try%
ping %host% -n 1 -w %TimeOutMax%
if not errorlevel 1 goto ping
set /a Try=%Try%+1
if %Try% gtr %MaxPing% goto reconnect
goto ForcePing
rem reconnect
:reconnect
echo %date% %time% - Reconnect.>> pinger.log
rasdial %link% /disconnect
rasdial %link% %login% %pass%
goto ping