Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. Hotkey, *R, Toggle
  2. Hotkey, *lbutton, Toggle
  3.  
  4. Gui, Add, Tab, x2 y-1 w470 h250 , FlyClient|AutoClick|W-Tap|Keys
  5. Gui, Font, S20 CDefault, Verdana
  6. Gui, Add, Text, x99 y39 w270 h30 , Welcome to FlyClient
  7. Gui, Add, Text, x84 y89 w300 h30 , Made By FlyBird
  8. Gui, Font, S10 CDefault, Verdana
  9. Gui, Add, Text, x129 y139 w210 h20 , Client Version : Build (NUMBER)
  10. Gui, Tab, AutoClick
  11. Gui, Add, Text, x32 y39 w170 h20 , Min Delay (MS)
  12. Gui, Add, Slider, x32 y59 w410 h30 vMin gMin ToolTip Range0-100, 25
  13. Gui, Add, Text, x32 y99 w170 h20 , Max Delay (MS)
  14. Gui, Add, Slider, x32 y119 w410 h30 vMax gMax ToolTip Range100-200, 125
  15. Gui, Add, Text, x32 y159 w240 h20 , Jitter Power (0 = no jitter)
  16. Gui, Add, Slider, x32 y179 w410 h30 Range0-10 ToolTip vJit gJit, 4
  17. Gui, Tab, W-Tap
  18. Gui, Add, Text, x84 y113 w300 h20 , No Settings. You can add some yourself <3
  19. Gui, Tab, Keys
  20. Gui, Add, Text, x12 y29 w220 h30 , WTap Toggle: Alt
  21. Gui, Add, Text, x12 y59 w230 h20 , WTap Use: Hold R
  22. Gui, Add, Text, x12 y99 w230 h20 , Autoclicker: Scroll Click
  23. Gui, Show, x375 y242 h250 w473, FlyClient
  24. Return
  25.  
  26. Min:
  27. {
  28. Gui, Submit, NoHide
  29. }
  30. return
  31.  
  32. Max:
  33. {
  34. Gui, Submit, NoHide
  35. }
  36. return
  37.  
  38. Jit:
  39. {
  40. Gui, Submit, NoHide
  41. }
  42. return
  43.  
  44. ;Autoclicker
  45. MButton::Hotkey, *lbutton, Toggle
  46. *lbutton::
  47. Send,{lbutton}
  48. While GetKeyState("lbutton", "P")
  49. {
  50. Send,{lbutton}
  51. Random, delay, %Min%, %Max%
  52. Sleep %delay%
  53. Random, j1, %Jit%,-%Jit%
  54. Random, j2, %Jit%,-%Jit%
  55. MouseMove, %j1%, %j2%, 0, R
  56. }
  57. return
  58.  
  59. Alt::Hotkey, *R, Toggle
  60. *R::
  61. while GetKeyState("R", "P")
  62. {
  63. Send,{w up}
  64. Sleep 2
  65. Send,{w down}
  66. }
  67. return
  68.  
  69. GuiClose:
  70. ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement