[Help]-Visual Basics Loader help
well ive got the login system down i just cant seem to figure out how to get it to display the current hack status (IE.) label1.text wont show "detected" or "undetected". i just need it to show the current staatus of each hack and an option to download it somehow. any help would be greatly appreciated!.
Thanks
Ken
Ftp, I cant get the idea to work lol
You need a webserver and knowledge in web server programming.
Use WebClient,DownloadString to download the string contained within an online txt file stored on your FTP and populate your label's .text property with the resulting string.
i.e
[php]
Dim wc As New Net.WebClient
Label1.Text = wc.DownloadString("http://www.mywebsite.com/serverstatus.txt")
[/php]
You'll need to edit the URL obvs, mine was just an example.