Advertisement
Quicksnailz

4 u

Dec 14th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. using ClubDarkAPI;
  5.  
  6. namespace Quick_Sploit
  7. {
  8. public partial class Form1 : Form
  9. {
  10. ExploitAPI api = new ExploitAPI();
  11. public Form1()
  12. {
  13. InitializeComponent();
  14. }
  15.  
  16. private void label2_Click(object sender, EventArgs e)
  17. {
  18.  
  19. }
  20.  
  21. private void button2_Click(object sender, EventArgs e) => api.LaunchExploit();
  22.  
  23. private void button1_Click(object sender, EventArgs e)
  24. {
  25. api.ExecuteScript(fastColoredTextBox1.Text);
  26. }
  27.  
  28. private void button3_Click(object sender, EventArgs e)
  29. {
  30. fastColoredTextBox1.Clear();
  31. }
  32.  
  33. private void button4_Click(object sender, EventArgs e)
  34. {
  35.  
  36. }
  37. private bool dragging = false;
  38. private Point cs;
  39. private Point start_point = new Point(0, 0);
  40. private void panel1_Paint(object sender, PaintEventArgs e)
  41. {
  42.  
  43. }
  44.  
  45. private void panel1_MouseDown(object sender, MouseEventArgs e)
  46. {
  47. dragging = true;
  48. start_point = new Point(e.X, e.Y);
  49. }
  50.  
  51. private void panel1_MouseMove(object sender, MouseEventArgs e)
  52. {
  53. if (dragging)
  54. {
  55. Point p = PointToScreen(e.Location);
  56. Location = new Point(p.X - this.start_point.X, p.Y - this.start_point.Y);
  57. }
  58. }
  59.  
  60. private void panel1_MouseUp(object sender, MouseEventArgs e)
  61. {
  62. dragging = false;
  63. }
  64.  
  65. private void button5_Click(object sender, EventArgs e)
  66. {
  67. Application.Exit();
  68. }
  69.  
  70. private void button6_Click(object sender, EventArgs e)
  71. {
  72. this.WindowState = FormWindowState.Minimized;
  73. }
  74. }
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement