URLFile = "localtime"
URL = "http://worldtimeapi.org/api/ip/"
URL = URL + GetPublicIP + ".txt"
a% = FileDownload(URL, URLFile)
GetLocalTime = ""
localtime
= MID$(localtime
, 11) GetLocalTime = localtime
URLFile = "publicip"
URL = "https://api.ipify.org/"
a% = FileDownload(URL, URLFile)
GetPublicIP = ""
GetPublicIP = publicip
FileDownload = URLDownloadToFileA(0, URL, File, 0, 0)