Advertisement
Guest User

4-digit brute

a guest
May 8th, 2021
1,779
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance, Force
  2. SendMode Input
  3. SetWorkingDir, %A_ScriptDir%
  4.  
  5. ;author Barbarosa
  6.  
  7. ;adjust variables to match server/client performance (bad performance --> higher numbers)
  8. fullex :=6500 ;change duration of full spin
  9. movex := 55   ;change duration for moving between numberes
  10. addx :=1700   ;change duration for adding 1 to current number
  11. waitx :=600   ;change wait duration
  12.  
  13. F1::
  14. Loop, 10{ ;test [x][x][x][x] combos
  15. Loop, 10{ ;test [][X][X][X] combos
  16. Loop, 10{ ;test [][][X][X] combos
  17. Sleep, 900 ;wait
  18. Send, {f Down}
  19. Sleep, fullex ;full spin
  20. Send, {f Up}
  21. Sleep, waitx ;wait
  22. Send, {f Down}
  23. Sleep, movex  ;move to pos 1
  24. Send, {f Up}
  25. Sleep, waitx ;wait
  26. Send, {f Down}
  27. Sleep, movex  ;move to pos 2
  28. Send, {f Up}
  29. Sleep, waitx ;wait
  30. Send, {f Down}
  31. Sleep, movex  ;move to pos 3
  32. Send, {f Up}
  33. Sleep, waitx ;wait
  34. Send, {f Down}
  35. Sleep, addx ;add 1 to pos 3
  36. Send, {f Up}
  37. Sleep, waitx ;wait
  38. Send, {f Down}
  39. Sleep, movex ;Move to pos 4
  40. Send, {f Up}
  41. }
  42. Sleep, waitx ;wait
  43. Send, {f Down}
  44. Sleep, movex ;Move to pos 1
  45. Send, {f Up}
  46. Sleep, waitx ;wait
  47. Send, {f Down}
  48. Sleep, movex ;Move to pos 2
  49. Send, {f Up}
  50. Sleep, waitx ;wait
  51. Send, {f Down}
  52. Sleep, addx ;add 1 to pos 2
  53. Send, {f Up}
  54. Sleep, waitx ;wait
  55. Send, {f Down}
  56. Sleep, movex ;Move to pos 3
  57. Send, {f Up}
  58. Sleep, waitx ;wait
  59. Send, {f Down}
  60. Sleep, movex ;Move to pos 4
  61. Send, {f Up}
  62. Sleep, waitx ;wait
  63. }
  64. Sleep, waitx ;wait
  65. Send, {f Down}
  66. Sleep, movex ;Move to pos 1
  67. Send, {f Up}
  68. Sleep, waitx ;wait
  69. Send, {f Down}
  70. Sleep, addx ;add 1 to pos 1
  71. Send, {f Up}
  72. Sleep, waitx ;wait
  73. Send, {f Down}
  74. Sleep, movex ;Move to pos 2
  75. Send, {f Up}
  76. Sleep, waitx ;wait
  77. Send, {f Down}
  78. Sleep, movex ;Move to pos 3
  79. Send, {f Up}
  80. Sleep, waitx ;wait
  81. Send, {f Down}
  82. Sleep, movex ;Move to pos 4
  83. Send, {f Up}
  84. Sleep, waitx ;wait
  85. }
  86. Return
  87.  
  88. F2::ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement