Global $sHeight = @DesktopHeight Global $sWidth = @DesktopWidth Global $UnPaused HotKeySet("+1","_TogglePause") ; Press Shift+1 to start script HotKeySet("+2", "_Terminate") ; Press Shift+2 to terminate script MsgBox(64, "Welcome!", "FIFA 18 Autobuyer by TMR. Instructions: 1. Log in to the FUT Web App 2. Add player name, position or pricing 3. On Google Chrome press F11 to make the Web App Full Screen (IMPORTANT) 4. Follow the on screen prompts then press Shift+1 to start automatically buying and Shift+2 to terminate! 5. Enjoy! :). Copyright © 2017 · All Rights Reserved · TMR.themusicroom1") While 1 ; Loop 1 Sleep(100) ; Waiting for function call. Pressing the Start hotkey ends this loop ToolTip('Autobuyer paused. Press SHIFT+1 to resume/pause or SHIFT+2 to terminate.',0,0) WEnd Func _TogglePause() ToolTip('Autobuyer has started. Press SHIFT+1 to pause or SHIFT+2 to terminate.',0,0) $UnPaused = NOT $UnPaused While $UnPaused ; Loop 2 ; Timing 2000 800 900 900 1100 1200 1000 2000 800 900 900 1100 1200 ToolTip("1 - Search") MouseClick("Left", @DesktopWidth *0.672, @DesktopHeight *0.92, 1, 25) ToolTip("2 - Buy Now") MouseClick("Left", @DesktopWidth *0.91, @DesktopHeight *0.612, 1, 27) ToolTip("3 - OK") MouseClick("Left", @DesktopWidth *0.529, @DesktopHeight *0.567, 1, 15) ToolTip("4 - OK Clear Error") MouseClick("Left", @DesktopWidth *0.495, @DesktopHeight *0.562, 1, 30) ToolTip("5 - Back to Search") MouseClick("Left", @DesktopWidth *0.0854, @DesktopHeight *0.0768, 1, 15) Sleep(100) WEnd EndFunc Func _Terminate() If MsgBox(4, 'Do you want to exit?', 'Click Yes to exit, or No to continue') = 6 Then Exit EndFunc ;==>_Pause