├── README.md ├── CookieClicker ├── ClickCookie.au3 └── ClickButton.au3 ├── MinecraftFishing.au3 ├── SimsFreeplayBot.au3 └── FreeRiceWebsite.au3 /README.md: -------------------------------------------------------------------------------- 1 | # automation-scripts 2 | > AutoIt scripts used to automate simple tasks for games and websites. -------------------------------------------------------------------------------- /CookieClicker/ClickCookie.au3: -------------------------------------------------------------------------------- 1 | #cs ---------------------------------------------------------------------------- 2 | 3 | AutoIt Version: 3.3.14.1 (Created Sunday, ‎May ‎1, ‎2016, ‏‎7:03:55 PM) 4 | Author: Lauren Stephenson 5 | 6 | Script Function: 7 | Used to automate cookie clicker game 8 | 9 | #ce ---------------------------------------------------------------------------- 10 | 11 | HotKeySet("{ESC}","terminate") 12 | 13 | $loop = 2 14 | 15 | #include 16 | MsgBox($MB_OK, "Cookie Clicker Bot", "To end the program, press the ESCAPE key and TAB key.") 17 | 18 | Do 19 | MouseClick("left",237,373,100,0) 20 | $loop = $loop + 1 21 | Until $loop = 1 22 | 23 | Func Terminate() 24 | Exit 0 25 | EndFunc -------------------------------------------------------------------------------- /CookieClicker/ClickButton.au3: -------------------------------------------------------------------------------- 1 | #cs ---------------------------------------------------------------------------- 2 | 3 | AutoIt Version: 3.3.14.1 (Created Sunday, ‎May ‎1, ‎2016, ‏‎7:03:55 PM) 4 | Author: Lauren Stephenson 5 | 6 | Script Function: 7 | Used to automate cookie clicker game 8 | 9 | #ce ---------------------------------------------------------------------------- 10 | 11 | HotKeySet("{TAB}","terminate2") 12 | 13 | $loop = 2 14 | 15 | Do 16 | 17 | $location = PixelSearch (0, 0, 1500, 750,0x66FF66, 2, 1) 18 | If IsArray ($location) = 1 Then 19 | MouseClick ("left", $location[0], $location[1], 1, 0) 20 | EndIf 21 | 22 | 23 | 24 | $loop = $loop + 1 25 | Until $loop = 1 26 | 27 | Func Terminate2() 28 | Exit 0 29 | EndFunc -------------------------------------------------------------------------------- /MinecraftFishing.au3: -------------------------------------------------------------------------------- 1 | #cs ---------------------------------------------------------------------------- 2 | 3 | AutoIt Version: 3.3.14.1 (Created ‎Tuesday, ‎June ‎7, ‎2016, ‏‎3:03:55 PM) 4 | Author: Lauren Stephenson 5 | 6 | Script Function: 7 | Combined with fishing redstone creation, automates fishing in Minecraft 8 | 9 | #ce ---------------------------------------------------------------------------- 10 | 11 | HotKeySet("{TAB}","terminate3") 12 | 13 | $loop = 2 14 | 15 | #include 16 | MsgBox($MB_OK, "MC Fish Bot", "To end the program, press the TAB key.") 17 | 18 | Do 19 | MouseClick("right",800,441,1,70) 20 | Sleep(325) 21 | $loop = $loop + 1 22 | Until $loop = 1 23 | 24 | Func Terminate3() 25 | Exit 0 26 | EndFunc -------------------------------------------------------------------------------- /SimsFreeplayBot.au3: -------------------------------------------------------------------------------- 1 | #cs ---------------------------------------------------------------------------- 2 | 3 | AutoIt Version: 3.3.14.1 (Created Sunday, ‎May ‎1, ‎2016, ‏‎7:03:55 PM) 4 | Author: Lauren Stephenson 5 | 6 | Script Function: 7 | By using this with the SimsFreeplay (dogs in empty yard) glitch, user earns infinite LP and money in the game 8 | 9 | #ce ---------------------------------------------------------------------------- 10 | 11 | HotKeySet("{TAB}","terminate2") 12 | 13 | $loop = 2 14 | 15 | Do 16 | 17 | $location = PixelSearch (0, 137, 1147, 547,0x65CCE7, 2, 1) 18 | If IsArray ($location) = 1 Then 19 | MouseClick ("left", $location[0], $location[1], 1, 0); 1 click at a speed of 0 20 | Sleep(1000) 21 | EndIf 22 | 23 | 24 | 25 | $loop = $loop + 1 26 | Until $loop = 1 27 | 28 | Func Terminate2() 29 | Exit 0 30 | EndFunc -------------------------------------------------------------------------------- /FreeRiceWebsite.au3: -------------------------------------------------------------------------------- 1 | #cs ---------------------------------------------------------------------------- 2 | 3 | AutoIt Version: 3.3.14.1 (Created ‎Friday, ‎July ‎8, ‎2016, ‏‎2:44:01 PM) 4 | Author: Lauren Stephenson 5 | 6 | Script Function: 7 | Used to earn infinite rice on FreeRice website automatically 8 | 9 | #ce ---------------------------------------------------------------------------- 10 | 11 | ; Use this link for the program and activate shortcut key 'b' for backspace - http://freerice.com/#/spanish/16181 12 | HotKeySet("{TAB}","terminate2") 13 | $loop = 2 14 | $pos = MouseGetPos() 15 | $x = 0; 16 | 17 | 18 | 19 | Do 20 | $pos = 0; 21 | $location = PixelSearch (586, 345, 586, 497,0x232323, 2, 1) 22 | If IsArray ($location) = 1 Then 23 | MouseClick ("left", $location[0], $location[1], 1, 9) 24 | MouseMove ( 615, $location[1], 0 ) 25 | Sleep(2000) 26 | Send('b') 27 | Sleep(2000) 28 | ElseIf $pos = 0 Then 29 | MouseClick ("left", 300, 50, 1, 9) 30 | Send("http://freerice.com/{#}/spanish/16181{ENTER}") 31 | Sleep(8000) 32 | EndIf 33 | 34 | 35 | 36 | $loop = $loop + 1 37 | Until $loop = 1 38 | 39 | 40 | Func Terminate2() 41 | Exit 0 42 | EndFunc --------------------------------------------------------------------------------