Advertisement
EpicXploiter

Key System Code

Aug 28th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. Below Initial Component
  2.  
  3. WebClient wc = new WebClient();
  4. string main = "Put Your Main Pastebin link Here";
  5.  
  6. Get Key
  7.  
  8. Process.Start("https://put your ad link here");
  9.  
  10. Continue
  11.  
  12. string getkey = wc.DownloadString(main);
  13. string correct = wc.DownloadString(getkey);
  14. if (richTextBox1.Text == correct)
  15. {
  16. this.Hide();
  17. Form2 Form = new Form2();
  18. Form.Show();
  19.  
  20. }
  21. else
  22. {
  23. MessageBox.Show("Incorrect Key!", "Invalid Key",MessageBoxButtons.OK,MessageBoxIcon.Error);
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement