YT_PatricioTGN

Codigos/Botones WeAreDevs Y Easy Exploits - PatricioTGN

Sep 19th, 2020 (edited)
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.49 KB | None | 0 0
  1. Nota: No Olvides de agregar en la parte de referencias la api, ya sea wearedevs o easy exploits, y arriba donde estan todos los "using" deben ponerlo ya sea tu api les dejare los using aqui:
  2.  
  3. using EasyExploits;
  4. using WeAreDevs;
  5.  
  6. ==WeAreDevs==
  7.  
  8. Execute boton:
  9.             ExploitAPI api = new ExploitAPI();
  10.             api.SendLimitedLuaScript(fastColoredTextBox1.Text);
  11.  
  12. Attach Boton:
  13.             ExploitAPI api = new ExploitAPI();
  14.             api.LaunchExploit();
  15.  
  16. Clear Boton: Clear.FastColoredTextbox1
  17.  
  18. Open File Boton:
  19.  
  20. OpenFileDialog opendialogfile = new OpenFileDialog();
  21.             opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
  22.             opendialogfile.FilterIndex = 2;
  23.             opendialogfile.RestoreDirectory = true;
  24.             if (opendialogfile.ShowDialog() != DialogResult.OK)
  25.                 return;
  26.             try
  27.             {
  28.                 fastColoredTextBox1.Text = "";
  29.                 System.IO.Stream stream;
  30.                 if ((stream = opendialogfile.OpenFile()) == null)
  31.                     return;
  32.                 using (stream)
  33.                     this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
  34.             }
  35.             catch(Exception ex)
  36.             {
  37.                 int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
  38.  
  39.             }
  40. ==Easy Exploits==
  41.  
  42. Execute Boton: module.ExecuteScript(fastColoredTextBox1.Text);
  43.  
  44. Attach Boton: module.LaunchExploit();
  45.  
  46. Clear Boton: Clear.FastColoredTextbox1
  47.  
  48. Open File Boton:
  49.  
  50. OpenFileDialog opendialogfile = new OpenFileDialog();
  51.             opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
  52.             opendialogfile.FilterIndex = 2;
  53.             opendialogfile.RestoreDirectory = true;
  54.             if (opendialogfile.ShowDialog() != DialogResult.OK)
  55.                 return;
  56.             try
  57.             {
  58.                 fastColoredTextBox1.Text = "";
  59.                 System.IO.Stream stream;
  60.                 if ((stream = opendialogfile.OpenFile()) == null)
  61.                     return;
  62.                 using (stream)
  63.                     this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
  64.             }
  65.             catch(Exception ex)
  66.             {
  67.                 int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
  68.  
  69.             }
  70.  
Add Comment
Please, Sign In to add comment