The Wiki for Tale 5 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Macros/tehm Grass

From ATITD5
Jump to navigationJump to search

Macro is for AC Tools

delay 4000

loop 8
	loop 20 // << this number x(2)  x(average grass/pick) is what you should end up with
		KEYDOWN {UP} 350
		MousePos 226, 66  //location of the Pick Grass icon (you can hover over it and hit Ctrl-M in ACTools window to find the loc)
		Leftclick
		delay 3450  //this delay has you wait until you pick up the grass - which is important

		KEYDOWN {DOWN} 350
		MousePos 226, 66
		leftclick
		delay 3450
	end
	
	MousePos 1229, 911  //indicates that the macro is taking a short break by moving the cursor to the chat area
	delay 4000  //this delay allows you to have the macro take a break so you could try to type quickly 4000 is 4 seconds only

end