I made this little script to check for upgrades, if the text file has a 1 in it it should say that you need to update:
$updatefile = InetGet("http://web-page.com/update-check.ini", "update-check.ini")
If StringInStr("update-check.ini", "23") Then
MsgBox(4096, "Update", "Update is necessary!", 10)
Else
MsgBox(4096, "Update", "Update is not necessary!", 10)
EndIf
But it is always saying "Update is not necessary", even though the text file has 23 in it.
Anyone can help?