It will notify you on every post made since you start it up, refresh time is 60 seconds.
#include
#include
#include
$user1=InputBox("Bitcointalk.org UID watchboard", "Input member UID to track here :", "")
$link = "https://bitcointalk.org/index.php?action=profile;u="&$user1&";sa=statPanel"
$sleep=60000
while 1
$1=(_INetGetSource($link))
FileWrite(@scriptdir&"\1.txt", $1)
Global $file = @ScriptDir & "\1.txt", $search = 'Total Posts:'
Global $iLine = 0, $sLine = '', $iValid = 0
Global $hFile = FileOpen($file)
If $hFile = -1 Then
MsgBox(0,'ERROR','Unable to open file for reading.')
Exit 1
EndIf
While 1
$iLine += 1
$sLine = FileReadLine($hFile)
If @error = -1 Then ExitLoop
If StringInStr($sLine, $search) And Not $iValid Then
$iValid = 1
ContinueLoop
EndIf
If $iValid Then
$iValid += 1
Global $topics=($iLine & ':' & $sLine & @CRLF)
If $iValid > 1 Then ExitLoop
EndIf
WEnd
FileClose($hFile)
$topics=StringTrimLeft($topics,29)
sleep(500)
$topics=StringTrimright($topics,12)
$topicsupdate=FileRead(@ScriptDir&"\2.txt")
if $topics <> $topicsupdate then MsgBox(0,"Be Advised !", "User with UID :"&$user1&", has made a new post !!",0)
FileDelete(@scriptdir&"\1.txt")
FileDelete(@scriptdir&"\2.txt")
FileWrite(@scriptdir&"\1.txt", $1)
FileWrite(@ScriptDir&"\2.txt",$topics)
sleep($sleep)
wend
Script is for use with autoit program, look it up and compile for yourself if you need this, i will not be giving you .exe files of any sort.
cheers