The Wiki for Tale 7 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:Mudkest/Macros

From ATITD7
Jump to navigationJump to search

Nothing uploaded, install auto-hotkey. Make a new text file somewhere and copy the code bit into the text file then rename from .txt to .ahk

Veggie planting

4 veggies

Plants 4 vegetables in a square. easiest would be f8f8 zoomed in but is not needed. plant all crops where you stand must be OFF and the plant menu showing seeds must be in top-left corner. Untested wehn carrying more then 1 type of seed(both amuns bounty and tears for onions for example)

;ctrl+p to plant 4 veggies
;^for control
;! for alt
;+for shift
;so ^!+p would be ctrl+alt+shift+p
;edit next line if you want another hotkey for planting, default is ctrl+p change the ^p to something else, leave the ::
^p::
{
	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 54, 88, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100

	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 82, 88, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100

	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 54, 119, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100

	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 82, 119, 2
	sleep 100
	Mouseclick Left,  40, 166
}

6 veggies

plants 6 veggies in 2 rows of 3. f8f8 zoomed in might be tricky. plant all crops where you stand must be OFF

;ctrl+p to plant 6 veggies
;^for control
;! for alt
;+for shift
;so ^!+p would be ctrl+alt+shift+p

^p::
{
	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 54, 88, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100

	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 66, 80, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100
	
	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 82, 88, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100

	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 54, 119, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100
	
	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 66, 128, 2
	sleep 100
	Mouseclick Left,  40, 166
	sleep 100
	
	MouseClick, left, 47, 47
	sleep 200
	Mouseclick Left, 82, 119, 2
	sleep 100
	Mouseclick Left,  40, 166
}