Guest Freelangaw Report post Posted September 19, 2019 On 7/1/2019 at 9:45 PM, Lili said: Hello, I've increased it to 1700 Now it is working better, because it digs to 83/190 and jumps and does not break However after a rock hit me in the eye, I am overheated and there is a CD during which I can't dig and the script continues and bugs. Another problem is - the Mine collapses after 5-10min of digging, is that normal? Sometimes mines collapse even after 1 dig! This is my working script, reaching 175/200 without problems with AutoHotkey version 1.1.30.03: Hide contents #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ~End:: loop { if GetKeyState("Delete","p") break Sleep, 1700 send, {Alt down} sleep, 200 send, {3 down} sleep, 17 send, {3 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d1 Sleep, 17 Loop, 120 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } Sleep, 1700 Sleep, 17 send, {Alt down} sleep, 200 send, {4 down} sleep, 17 send, {4 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d2 Sleep, 17 Loop, 120 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } } Return at first i was digging with 5 enters. then i increased FASTER DRILL by 5 levels. then it suddenly makes 7 enters. HELP!! how to make it 5 enters again? Quote Share this post Link to post Share on other sites
PanFlippingCake 185 Report post Posted September 20, 2019 (edited) 22 hours ago, Guest Freelangaw said: at first i was digging with 5 enters. then i increased FASTER DRILL by 5 levels. then it suddenly makes 7 enters. HELP!! how to make it 5 enters again? try using the new version of digging since the older one is a bit sketchy and harder to maintain due to lag/ frame issues #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ~End:: loop { if GetKeyState("Delete","p") break Sleep, 700 send, {Alt down} sleep, 200 send, {3 down} sleep, 17 send, {3 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d1 Sleep, 17 Loop, 50 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } Sleep, 700 Sleep, 17 send, {Alt down} sleep, 200 send, {4 down} sleep, 17 send, {4 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d2 Sleep, 17 Loop, 50 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } } return Edited September 20, 2019 by bryan31 Quote Share this post Link to post Share on other sites
Guest Freelangaw Report post Posted September 20, 2019 9 hours ago, bryan31 said: try using the new version of digging since the older one is a bit sketchy and harder to maintain due to lag/ frame issues Reveal hidden contents #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ~End:: loop { if GetKeyState("Delete","p") break Sleep, 700 send, {Alt down} sleep, 200 send, {3 down} sleep, 17 send, {3 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d1 Sleep, 17 Loop, 50 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } Sleep, 700 Sleep, 17 send, {Alt down} sleep, 200 send, {4 down} sleep, 17 send, {4 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d2 Sleep, 17 Loop, 50 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } } return wow it doesnt break. thank you very much! works so much better /heh. btw is there a way i can make the 3 enters now to 6 or 7 enters? Quote Share this post Link to post Share on other sites
NoXqZ 101 Report post Posted July 30, 2020 Awesome script! Thank you! However the 10 enters gives an error for me. The (4) New Mining Macro script does work. Is it possible for you to make a script that goes until depth 12? Much appreciated! THANKSSSSSSD1 Quote Share this post Link to post Share on other sites
Guest MiningNewb Report post Posted September 2, 2020 Delete button for stop and start? @PanFlippingCake Quote Share this post Link to post Share on other sites
PanFlippingCake 185 Report post Posted September 2, 2020 22 minutes ago, Guest MiningNewb said: Delete button for stop and start? @PanFlippingCake yes hold delete key to stop it also i should probably update the topic when imm not lazy lol Quote Share this post Link to post Share on other sites
Guest MiningNewb Report post Posted September 2, 2020 Thank you. Run as admin then deletr key. Got it. Quote Share this post Link to post Share on other sites
Guest Lazy People Report post Posted September 2, 2020 1 hour ago, PanFlippingCake said: i should probably update the topic when imm not lazy lol hmm... this thread is for lazy people. wel never expect any updates because we are all lazy people :p Quote Share this post Link to post Share on other sites
terrence 6 Report post Posted September 4, 2020 (edited) Hi can you share the list of important loots Excluding those minerals? I'm just a little anxious I might miss the good stuff Edited September 4, 2020 by terrence Quote Share this post Link to post Share on other sites
PanFlippingCake 185 Report post Posted September 16, 2020 updated a couple of scripts/ make the posted easier for the eyes Quote Share this post Link to post Share on other sites
MoonBrew 15 Report post Posted January 29 @PanFlippingCake I updated this script. Quote Share this post Link to post Share on other sites
Ludociel. 0 Report post Posted January 29 On 9/20/2019 at 10:16 AM, PanFlippingCake said: try using the new version of digging since the older one is a bit sketchy and harder to maintain due to lag/ frame issues Hide contents #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ~End:: loop { if GetKeyState("Delete","p") break Sleep, 700 send, {Alt down} sleep, 200 send, {3 down} sleep, 17 send, {3 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d1 Sleep, 17 Loop, 50 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } Sleep, 700 Sleep, 17 send, {Alt down} sleep, 200 send, {4 down} sleep, 17 send, {4 up} sleep, 200 send, {Alt up} Sleep, 125 Send, +d2 Sleep, 17 Loop, 50 { if GetKeyState("Delete","p") return Send, {Enter} Sleep, 100 } } return How to use this? Im a newbie and i dont know much about script. I want to mine though. Quote Share this post Link to post Share on other sites
Guest rodrigoBe Report post Posted February 14 Thank you for the script Anyway the loop resets, mostly for thr Repair skill. Quote Share this post Link to post Share on other sites
PanFlippingCake 185 Report post Posted February 24 added a mining program, still in testing phase but its thier....... Quote Share this post Link to post Share on other sites