Advertisement
RealBlackNinja

BlackNinjaCheats Scripts Guide

Mar 12th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  3. Draggable/Moveable Script:
  4.  
  5.  
  6. public const int WM_NCLBUTTONDOWN = 0xA1;
  7. public const int HT_CAPTION = 0x2;
  8.  
  9. [DllImport("user32.dll")]
  10. public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
  11.  
  12. [DllImport("user32.dll")]
  13. public static extern bool ReleaseCapture();
  14.  
  15. private void FormMoveable_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
  16. {
  17. if (e.Button == MouseButtons.Left)
  18. {
  19. ReleaseCapture();
  20. SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
  21. }
  22. }
  23. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  24. Submit Button Script:
  25.  
  26.  
  27. if (textBox1.Text == "YourKey")
  28. {
  29. main main = new main();
  30. main.Show();
  31. this.Hide();
  32. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  33. Submit Button Script:
  34.  
  35.  
  36. if (textBox1.Text == "YourKey")
  37. {
  38. main main = new main();
  39. main.Show();
  40. this.Hide();
  41. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  42. Get Key Button Script:
  43.  
  44.  
  45. Process.Start("YourLink");
  46. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  47. Close Button Script
  48.  
  49.  
  50. Application.Exit();
  51. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  52. Minimize Button Script:
  53.  
  54. this.WindowState = FormWindowState.Minimized;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement