Advertisement
Guest User

Untitled

a guest
Dec 10th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $started=$FALSE
  2. foreach($line in Get-Content .\bot_list.txt)
  3. {
  4. if ($line -contains '#')
  5. {
  6. if(-Not $started)
  7. {
  8. $started=$TRUE
  9. continue
  10. }
  11. else
  12. {
  13. break
  14. }
  15. }
  16.  
  17. if ($line -contains '*')
  18. {
  19. start-sleep -s 3600
  20. continue
  21. }
  22.  
  23. if (-Not $started)
  24. {
  25. continue
  26. }
  27.  
  28. $username = $line.Split(" ")[0]
  29. $password = $line.Split(" ")[1]
  30. $secret = $line.Split(" ")[2]
  31.  
  32. echo $username
  33.  
  34. start-process -filepath "cmd" -argumentlist "/c py codegen.py $secret | .\SteamItemDropIdler.exe $username $password 440 0"
  35. start-sleep -s 2
  36. }
  37. #304930 10000 -WindowStyle Minimized
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement