Advertisement
INeverDevelop

am5aw5ma5maw5m

Nov 20th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. WebClient wc = new WebClient();
  2. if(!wc.DownloadString("https://pastebin.com/raw/jZFLLcSk").Contains("No Update"))
  3. {
  4. DialogResult dialogResult = MessageBox.Show("New Update!", "Do You Want To Update The Exploit For New Features?", MessageBoxButtons.YesNo);
  5. if (dialogResult == DialogResult.Yes)
  6. {
  7. string updatemain = wc.DownloadString("https://pastebin.com/raw/mZPM89MB");
  8. Uri newupdate = new Uri(updatemain);
  9. wc.DownloadFileAsync(newupdate, "HarkNewUpdate.rar");
  10. }
  11. else if (dialogResult == DialogResult.No)
  12. {
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement