[Low effort video, not really important just wanted to share this]
So this is an extremely simple autofarm, not even complicated one bit.
None of the movements were done by me, it simply places, destroys, picks it up, and goes again.
Setup is a bit specific, but it IS an AutoIt code, so it only moves the mouse and clicks.
For the setup: You need 1280x720 resolution (or set your own cords in the code if you have bigger/smaller), make sure your farming block is in the first slot (right after fist), and the seeds right after that to make sure that picking up something wont mess up the order. If the farmable drops stuff like a waterfall, make that the third hotbar item. If not, just make it something random.
Have a setup like in the video, stand in the middle of the platforms, and run it.
Also, if you are wondering what No magplant method means, there's no magplants to pick up the items so it always moves to pick up the items.
Code: (used in AutoIt)
Func exitthescript()
Exit
EndFunc
HotKeySet( "{1}", "exitthescript" )
Sleep(2000)
$loop = 1
Do
MouseClick("left",584,610,1,10)
MouseMove(502,263,10)
MouseDown("primary")
MouseMove(753,261,10)
MouseMove(502,263,10)
MouseMove(753,261,10)
MouseUp("primary")
MouseClick("left",481,617,1,10)
MouseMove(502,263,10)
MouseDown("primary")
MouseMove(753,261,10)
MouseMove(502,263,10)
MouseMove(753,261,10)
MouseUp("primary")
Sleep(250)
Opt("SendKeyDownDelay", 400)
Send("a")
Opt("SendKeyDownDelay", 5)
Opt("SendKeyDownDelay", 400)
Send("{space}")
Opt("SendKeyDownDelay", 5)
sleep(250)
Opt("SendKeyDownDelay", 600)
Send("d")
Opt("SendKeyDownDelay", 5)
Sleep(350)
Opt("SendKeyDownDelay", 348)
Send("a")
Opt("SendKeyDownDelay", 5)
Until $loop = 2
Ещё видео!