The Wiki for Tale 6 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.

User:Sharae/Macros

From ATITD6
Jump to navigationJump to search

Back to My Main Page

ACTOOL MACROS

Wheat

Wheat Macro Set Up-Click to Enlarge

Copy and paste this into ACTOOL

//Screen resolution 1280x768.   Start with at least 8 empty jugs
//Pin Plant <Wheat Type> to left of clock
//Pin Empty water jugs directly below clock
//Plant 6 wheat beds.  Pin beds in upper right corner. Hit F2 to start macro.
//Pause macro when you harvest a wheat bed by hitting F2. Right mouse click bed menu 
//to unpin. Plant a new wheat bed and pin bed menu in empty spot.  Hit F2 to unpause macro 
 
loop 50000 // Number of times to harvest the wheat
 
//fill jugs
  
MousePos 206, 89
leftclick
delay 1000
MousePos 642, 411
leftclick
delay 1000
 
//bed one
 
MousePos 1207, 35
leftclick
delay 500
MousePos 1207, 65
leftclick
delay 500
 
//bed two
 
MousePos 1208, 135
leftclick
delay 500
MousePos 1209, 163
leftclick
delay 500
 
//bed three
MousePos 1208, 237
leftclick
delay 500
MousePos 1210, 263
leftclick
delay 500
 
//bed 4
MousePos 1002, 38
leftclick
delay 500
MousePos 1001, 60
leftclick
delay 500
 
//bed 5
MousePos 1000, 133
leftclick
delay 500
MousePos 1003, 159
leftclick
delay 500
 
//bed 6
MousePos 1000, 234
leftclick
delay 500
MousePos 1001, 260
leftclick
delay 500
 
//empty one jug
MousePos 647, 75
leftclick
delay 500
 
end