Advertisement
7889

Untitled

Jul 27th, 2023
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.43 KB | Gaming | 0 0
  1. Refresh Listbox:
  2.  
  3. listBox1.Items.Clear();//Clear Items in the LuaScriptList
  4. PopulateListBox(listBox1, "./Scripts", "*.txt");
  5. PopulateListBox(listBox1, "./Scripts", "*.lua");
  6.  
  7. Listbox:
  8.  
  9. fastColoredTextBox1.Text = File.ReadAllText($"./Scripts/{listBox1.SelectedItem}");
  10.  
  11. Clear:
  12.  
  13. fastColoredTextBox1.Clear();
  14.  
  15. Execute:
  16.  
  17. module.ExecuteScript(fastColoredTextBox.Text);
  18.  
  19. module variable:
  20.  
  21. EasyExploits.Module module = new EasyExploits.Module();
  22.  
  23. Save File:
  24.  
  25. SaveFileDialog sfd = new SaveFileDialog();
  26.             sfd.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua|All Files (*.*)|*.*";
  27.             if (sfd.ShowDialog() == DialogResult.OK)
  28.             {
  29.                 Stream s = sfd.OpenFile();
  30.                 StreamWriter sw = new StreamWriter(s);
  31.                 sw.Write(textBox.Text);
  32.                 sw.Close();
  33.             }
  34.  
  35. Open File:
  36.  
  37. OpenFileDialog openFileDialog1 = new OpenFileDialog();
  38.             if (openFileDialog1.ShowDialog() == DialogResult.OK)
  39.             {
  40.                 openFileDialog1.Title = "Open";
  41.                 fastColoredTextBox1.Text = File.ReadAllText(openFileDialog1.FileName);
  42.             }
  43.  
  44. Inject:
  45.  
  46. module.LaunchExploit();
  47.  
  48. Close:
  49.  
  50. Application.Exit();
  51.  
  52. Minimize:
  53.  
  54. WindowState = FormWindowState.Minimized();
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61. Download 👇 Links
  62.  
  63. https://easyexploits.com/downloadexploit?name=EasyXploits+API+V2&id=6
  64.  
  65. https://www.dllme.com/dll/files/fastcoloredtextbox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement