Advertisement
teucu84

cu

Mar 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. #SingleInstance Force
  2. setkeydelay 75
  3. gui:
  4. gui, destroy
  5. Blank =
  6. CharList = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,X,W,Y,Z
  7. StringSplit, CharArray, CharList, `,
  8. str =
  9. loop, 9
  10. { random, pick, 2, %CharArray0%
  11. item := CharArray%pick%
  12. str = %str%%item%
  13. }
  14. Gui, Add, edit, x5 y5 w110 h21 vahkname, %str%
  15. gui, add, button, x115 y4 w31 h23, new
  16. CharList = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,X,W,Y,Z
  17. StringSplit, CharArray, CharList, `,
  18. 2str =
  19. loop, 9
  20. { random, pick, 2, %CharArray0%
  21. 2item := CharArray%pick%
  22. 2str = %2str%%2item%
  23. }
  24. Gui, Add, edit, x5 y27 w140 vahkpass, %2str%
  25. Gui, Add, edit, x5 y49 w140 vahkmail, %str%@outlook.com
  26. Gui, Add, Button, x4 y92 w110 h23, create
  27. Gui, Add, Button, x113 y92 w33 h23, quit
  28. Gui, show, w150 h119 x5 y5,teucu84
  29. return
  30. buttonquit:
  31. exitapp
  32. buttonnew:
  33. gui, destroy
  34. goto gui
  35. return
  36. buttoncreate:
  37. gui, submit, nohide
  38. send, !{tab}
  39. sleep, 1000
  40. run, THE_PLACE_WHERE_YOUR_STEAM_IS_INSTALLED
  41. sleep, 5000
  42. winwaitactive, Steam
  43. send, {enter}
  44. sleep, 1000
  45. send, {enter}
  46. sleep, 1000
  47. send, {enter}
  48. sleep, 1000
  49. send, %ahkname%{tab}
  50. sleep, 3000
  51. FileAppend, %ahkname%`n, %A_WorkingDir%\steamaccounts.txt
  52. sleep, 3000
  53. send, %ahkpass%{tab}
  54. sleep, 4000
  55. send, %ahkpass%
  56. sleep, 4000
  57. FileAppend, %ahkpass%`n, %A_WorkingDir%\steamaccounts.txt
  58. sleep, 3000
  59. send, {enter}
  60. sleep, 4000
  61. send, %ahkmail%{tab}
  62. sleep, 3000
  63. send, %ahkmail%
  64. sleep, 3000
  65. FileAppend, %ahkmail%`n, %A_WorkingDir%\steamaccounts.txt
  66. sleep, 3000
  67. send, {enter}
  68. sleep, 3000
  69. send, {enter}
  70. sleep, 9000
  71. send, {enter}
  72. sleep, 3000
  73. send, {enter}
  74. sleep, 3000
  75. Process, Close, Steam.exe
  76. RegDelete, HKEY_CURRENT_USER\Software\Valve\Steam, AutoLoginUser
  77. goto gui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement