demisev3 Posted October 4, 2019 Share Posted October 4, 2019 (edited) i was fooling around and come up with this. works pretty well for speeding things up. for making Mahogany Tables. ;dose not interact with butler ----------------------------------------------------------------------------- ;AHK 2 Click: z:: Click Right sleep (500) MouseMove, 0, 54, 0, R sleep (800) Click sleep (800) send {6} return x:: Click Right sleep (500) MouseMove, 0, 54, 0, R sleep (500) Click sleep (800) send {1} MouseMove, 0, -100, 0, R --------------------------------------------------------------------- ;AHK Auto #MaxThreadsperHotkey 2 z:: toggle := !toggle loop { Click Right sleep (500) MouseMove, 0, 54, 0, R sleep (800) Click sleep (800) send {6} sleep (1800) Click Right sleep (500) MouseMove, 0, 54, 0, R sleep (500) Click sleep (800) send {1} MouseMove, 0, -88, 0, R break } return with the auto it makes and removes and you have to toggle again not fully auto. tell me what you guys think. thanks Edited October 4, 2019 by demisev3 3 Quote Link to comment Share on other sites More sharing options...
Gunman Posted October 4, 2019 Share Posted October 4, 2019 Stealth builder is better. Quote Link to comment Share on other sites More sharing options...
demisev3 Posted October 4, 2019 Author Share Posted October 4, 2019 2 minutes ago, Gunman said: Stealth builder is better. havent looked into it just getting back into all this. can you drop a link? Quote Link to comment Share on other sites More sharing options...
FuryShark Posted October 4, 2019 Share Posted October 4, 2019 43 minutes ago, demisev3 said: havent looked into it just getting back into all this. can you drop a link? 1 Quote Link to comment Share on other sites More sharing options...
Fishing Posted October 4, 2019 Share Posted October 4, 2019 i like it ty for sharing Quote Link to comment Share on other sites More sharing options...
BuyingHardcores Posted October 6, 2019 Share Posted October 6, 2019 nice Quote Link to comment Share on other sites More sharing options...
Mike AHK Posted December 22, 2023 Share Posted December 22, 2023 (edited) Hi Ive make it more advanced and random. Here is my code #NoEnv #If WinActive("RuneLite") #CommentFlag // ; Press Q to start script Q:: toggle := !toggle loop { #CommentFlag // ; Set Offset to X and Y to make it random Random, randomX, -20, 20 Random, randomY, 50, 58 Click Right #CommentFlag // ; Set random time interval 400ms - 500ms Random ranSleep, 400, 500 sleep %ranSleep% MouseMove, %randomX%, %randomY%, 0, R Random ranSleep, 600, 800 sleep %ranSleep% Click Random ranSleep, 600, 800 sleep %ranSleep% send {6} Random ranSleep, 1500, 1800 sleep %ranSleep% Click Right Random ranSleep, 400, 500 sleep %ranSleep% MouseMove, %randomX%, %randomY%, 0, R Random ranSleep, 450, 500 sleep %ranSleep% Click Random ranSleep, 600, 800 sleep %ranSleep% send {1} MouseMove, 0, -95, 0, R break } return #CommentFlag // ; L is reload script, Esc is exit L::reload Esc::exitapp Edited December 22, 2023 by Mike AHK additional info Quote Link to comment Share on other sites More sharing options...