larileet Posted July 23, 2016 Share Posted July 23, 2016 i found rdy script, all its missing is once inventory reaches its capasity to go to the " main thing " and dump all of them inside so it can keep gather more. Quote HotKeySet("{ESC}", "Terminate") HotKeySet("!c", "getColor") HotKeySet("!a", "attackLoop") Global $color Global $interval $interval = 10000 MsgBox(0, "Starting Up", "Starting, use ESCAPE to quit, Alt + C to set color, and Alt + A to attack.") Func Terminate() Exit 1 EndFunc Func getColor() $point = MouseGetPos() $color = PixelGetColor($point[0], $point[1]) MsgBox(0, "Color Set", "The color has been set to " & $color) EndFunc Func attackLoop() MsgBox(0, "Attacking", "Starting to attack") While 1 $point = PixelSearch(60, 157, 1772, 759, $color) if IsArray($point) Then MouseClick("left", $point[0], $point[1]) Sleep($interval) EndIf Sleep(50) WEnd EndFunc While 1 sleep(250) WEnd Link to comment Share on other sites More sharing options...
InunoTaishou Posted July 23, 2016 Share Posted July 23, 2016 (edited) You can read this guide, it has step by step instructions on how to do that. Step 1 is the most important. Edited July 23, 2016 by InunoTaishou Blue_Drache 1 Link to comment Share on other sites More sharing options...
Bert Posted July 24, 2016 Share Posted July 24, 2016 1 hour ago, InunoTaishou said: You can read this guide, it has step by step instructions on how to do that. Step 1 is the most important. I second that suggestion! That guide has it all! Step 1 in the guide is by far the most important. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
Recommended Posts