Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

bradster2214

8
Posts
A member registered Aug 13, 2017

Recent community posts

true but like i said, let modders add features, you can work on bugs then take the modders coding and add it to the base game. Saves you effort and allows you to allow others to contribute more to this great game. It has a lot of potential and is already a relally cool game

just a question, will you ever allow modding support? Modding would allow thousands more possibilities and allows other people to add features for you, meaning you can work on refining the bugs out of it

the normal storage boxes are simple to make, 4 planks, and you can make multiple boxes for the same item. Set a bot to make a box and then pick up the item and put it in the box 100 times then make a new box, easy

bug. I can use all the functions i usre. Moving, picking up, digging, dropping, taking and putting in stuff, repeats, etc. I can use them all. Probably a problem on your end or i got lucky. Can't use repeat x times inside a repeat x times though

oh ok, well i hope to see it resolved soon. But seriously, more options for coding bots would be fantastic. Some people could really go nuts with typing the code in and stuff. I personally find it more appealing to type code in myself and it will serve as a learning tool for people to learn how basic python coding works. If it isn't added it's not a big deal. This game is amazing and i would love to donate but sadly i don't have access to my bank account yet

P.S. i didn't put a screenshot on as the gui is still too small currently and i got rid of the code and set 2 bots to do it and now it works fine

Just a thought cabal, you might want to get a hard drive and put ALL your games and files on there, but keep the operating system on your ssd. you're lag issues are from the ssd. if it is over half full the ssd starts slowing down. investing in any size hard drive to put games and stuff on will greatly help you. and with files i mean documents, desktop, etc. i can give you some instuctions on how to do that if you would like. it will certainly help. i did it to mine and it's running twice as fast. 

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

|  |======

|====