- Joined
- Jan 31, 2017
- Messages
- 121
- Thread Author
- #1
A lot of times my bot tries to pick up a small tile from the ground using
and the bot does not manage to do anything within 60 calls. I've observed, that it sometimes hovers the item for a split second.
To get a better understanding of the situation:
Imgur: The most awesome images on the Internet
As you can see, the tile located just south of the player is very small. I've found
to be improving, but I've been told that it is redundant because
already handles movement.
Any help is greatly appreciated
Code:
groundItem.interact("Take", groundItem.getDefinition().getName());
To get a better understanding of the situation:
Imgur: The most awesome images on the Internet
As you can see, the tile located just south of the player is very small. I've found
Code:
if(groundItem.hover()){ groundItem.interact(...) }
Code:
.interact()
Any help is greatly appreciated