Advertisement
memezisnotded

Untitled

Apr 19th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. bool check = NamedPipeExist("WeAreDevsPublicAPI_Lua");
  2. try
  3. {
  4. foreach (string text in Directory.GetFiles("./autoexec"))
  5. {
  6. LaunchExploit();
  7. Thread.Sleep(6000);
  8. bool yep = NamedPipeExist("WeAreDevsPublicAPI_Lua");
  9. if (yep)
  10. {
  11. foreach (FileInfo fileInfo in new DirectoryInfo(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "autoexec")).GetFiles("*.txt"))
  12. {
  13. SendLimitedLuaScript(File.ReadAllText(Path.Combine(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "autoexec"), fileInfo.Name)));
  14. }
  15. }
  16. }
  17. }
  18. catch (Exception)
  19. {
  20. MessageBox.Show("Where is the autoexec folder! anyway doesnt matter lol just click ok to continue.", "Error: Could not locate folders!");
  21. LaunchExploit();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement