Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. Gui, +Resize
  2. Gui, Color, white
  3. Gui, Font, white
  4. Gui, Font, arial, s12, white
  5. Gui, Color, , purple
  6. Gui, Add, Text,, $================$
  7. Gui, Add, Text,, 𝓒𝓸𝓢𝓬𝓲𝓸𝓗𝓲𝓽𝓒
  8. Gui, Add, Text,, $================$
  9. Gui, Add, Edit, vHotkey, Bind
  10. Gui, add, edit, vMindelay, max
  11. Gui, add, edit, vMaxdelay, min
  12. Gui, Add, Checkbox, vJitter, Jitter
  13. Gui, Add, Edit, vJitts, Jitter [1-10]
  14. Gui, Add, Text,, $================$
  15. Gui, Add, Text,, $ MS/CPS $
  16. Gui, Add, Text,, 70-72 - cc/mc4u
  17. Gui, Add, Text,, 50-60 - onlypvp
  18. Gui, Add, Text,, 60-70 - pvpstar
  19. Gui, Add, Text,, 65-69 - arivi
  20. Gui, Add, Text,, 69-72 - xlajt
  21. Gui, Add, Text,, $ MS/CPS $
  22. Gui, Add, Text,, $================$
  23. Gui, Add, Text,,
  24. Gui, Add, Button, Default, save
  25. Gui, Show
  26. Return
  27. ButtonSAVE:
  28. Gui, Submit, nohide
  29. Hotkey, %Hotkey%, Button
  30. Return
  31. GuiClose(GuiHwnd) {
  32. ExitApp
  33. }
  34.  
  35. Button:
  36. Toggle:=!Toggle
  37.  
  38. ~LButton::
  39. loop
  40. {
  41. If toggle {
  42. If GetKeyState("LButton", "P") && GetKeyState("RButton", "P"){
  43. SetMouseDelay, 0
  44. If (%Jitter% = yes){
  45. random, Jitx, -%Jitts%, %Jitts%
  46. random, Jity, -%Jitts%, %Jitts%
  47. MouseMove, %Jitx%, %Jity%, 40, R
  48. }
  49. random, delay, %Mindelay%, %Maxdelay%
  50. Click
  51. Sleep, %delay% ;
  52. } else {
  53.  
  54.  
  55. SetMouseDelay, 0
  56. random, delay, %Mindelay%, %Maxdelay%
  57. If (%Jitter% = yes){
  58. random, Jitx, -%Jitts%, %Jitts%
  59. random, Jity, -%Jitts%, %Jitts%
  60. MouseMove, %Jitx%, %Jity%, 40, R
  61. }
  62. Click
  63. Sleep, %delay% ;
  64. GetKeyState, state, LButton, P
  65. if state = U ;
  66. break
  67. }
  68. }else{
  69. break
  70. }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement