this game is amazing and has a lot of potential. it's like factorio but i'm fine with that, it adds other mobs to deal with and it's great! i do have 1 request that we can code bots using python, like if then else, or something like that, maybe an option to have a specific code where we can type it in or the normal way to code it, idk, whatever is easier. anyways.
so i told the bot to go to where my seeds are kept, pick up 5 and take it to the seedling tray, and repeat that 3 times, then go to the fertiliser storage and pick up 5 fertiliser and put it into the seedling tray. instead it went and picked 5 seeds, took it to the tray, did it again, so far so good. did it again, still good, then it did it again. didn't go to the next step which is to pick up fertiliser.. either i'm a numpty and screwed up or this is a bug, i am using the crude robots though
Below is the code i used when i found this bug:
|====forever
| |=====repeat 3 times
| | go to general storage (tree seed)
| | |======repeat 5 times
| | | take from general storage (tree seed)
| | |======
| | go to seedling tray
| | |======repeat until hand empty
| | |put into seedling tray
| | |======
| |=====
| go to fertiliser storage
| |======repeat 5 times
| | take from fertiliser storage
| |======
| go to seedling tray
| |======repeat until hand empty
| |put into seedling tray
| |======
|====