retrace actions
smokii0 opened this issue ยท 1 comments
ok so i have a modded farm and i cant figure out how to make baritone farm the things in my farm. so i was wondering if there is some way for me to "record"my actions so the bot can repeat the whole loop over and over again?
no baritone cant record and replay actions.
unfortunatly the plants harvested by baritone are hard coded so you cant add your modded plants to a list. if you know a little java you could edit the file to your likeing.
add your modded seeds in this list:
baritone/src/main/java/baritone/process/FarmProcess.java
Lines 67 to 74 in ff17320
add items you want to pick up to this list:
baritone/src/main/java/baritone/process/FarmProcess.java
Lines 76 to 91 in ff17320
and add the blocks that should be harvested here (probably moste difficult part but doable):
baritone/src/main/java/baritone/process/FarmProcess.java
Lines 114 to 156 in ff17320