Advertisement
exstra

GTA Online Inside Track Glitch AFK Script

Aug 20th, 2019
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. ; used coordinates are relative to the active window's client area (excluding title bar, menu and borders)
  2. ; set GTA window to Windowed 800x600 px (Otherwise Coordinates have to be adjusted)
  3. CoordMode, Mouse, Client
  4. CoordMode, Pixel, Client
  5.  
  6. ; wait, push notification and run script (function under f1)
  7. sleep 2000
  8. traytip, AFK Script running, press F2 to pause and F12 to reload script
  9. send {f1}
  10.  
  11.  
  12. f12::Reload ; reload script on F12 (change button here if needed)
  13. send {f1}
  14.  
  15. f2::pause, toggle ; pause script on F2 (change button here if needed)
  16.  
  17.  
  18. f1::
  19. loop {
  20. ; click on 'place bet' button
  21. MouseMove, 545, 505
  22. sleep, 400
  23. Click, down, left
  24. sleep, 70
  25. Click, up, left
  26. sleep, 400
  27.  
  28. ; click on horse (change the second coordinate in the next line for different horses)
  29. MouseMove, 300, 200 ; (344: first, 463: second, 577: third, 701: fourth, 821: fifth, 946: sixth,)
  30. sleep, 400
  31. Click, down, left
  32. sleep, 70
  33. Click, up, left
  34. sleep, 400
  35.  
  36. ; click on right arrow to increase bet (change the sleep time in line 40 to increase/decrease bet amount)
  37. MouseMove, 609, 300
  38. sleep, 400
  39. Click, down, left
  40. sleep, 2950 ; (2950: 2000 dollar bet, 10: 200 dollar bet)
  41.  
  42. ; move mouse to 'place bet' button and hold until race is over
  43. MouseMove, 545, 450
  44. sleep, 33000
  45. Click, up, left
  46. sleep, 2000
  47.  
  48. ; click on 'play again' button
  49. MouseMove, 412, 561
  50. sleep, 200
  51. Click, down, left
  52. sleep, 80
  53. Click, up, left
  54. sleep, 1000
  55. }
  56.  
  57. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement