Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Refresh Listbox:
- listBox1.Items.Clear();//Clear Items in the LuaScriptList
- PopulateListBox(listBox1, "./Scripts", "*.txt");
- PopulateListBox(listBox1, "./Scripts", "*.lua");
- Listbox:
- fastColoredTextBox1.Text = File.ReadAllText($"./Scripts/{listBox1.SelectedItem}");
- Clear:
- fastColoredTextBox1.Clear();
- Execute:
- module.ExecuteScript(fastColoredTextBox.Text);
- module variable:
- EasyExploits.Module module = new EasyExploits.Module();
- Save File:
- SaveFileDialog sfd = new SaveFileDialog();
- sfd.Filter = "Txt Files (*.txt)|*.txt|Lua Files (*.lua)|*.lua|All Files (*.*)|*.*";
- if (sfd.ShowDialog() == DialogResult.OK)
- {
- Stream s = sfd.OpenFile();
- StreamWriter sw = new StreamWriter(s);
- sw.Write(textBox.Text);
- sw.Close();
- }
- Open File:
- OpenFileDialog openFileDialog1 = new OpenFileDialog();
- if (openFileDialog1.ShowDialog() == DialogResult.OK)
- {
- openFileDialog1.Title = "Open";
- fastColoredTextBox1.Text = File.ReadAllText(openFileDialog1.FileName);
- }
- Inject:
- module.LaunchExploit();
- Close:
- Application.Exit();
- Minimize:
- WindowState = FormWindowState.Minimized();
- Download 👇 Links
- https://easyexploits.com/downloadexploit?name=EasyXploits+API+V2&id=6
- https://www.dllme.com/dll/files/fastcoloredtextbox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement