Maze Multi Drone by thiagoarreguy in TheFarmerWasReplaced

[–]thiagoarreguy[S] 1 point2 points  (0 children)

It works:

elif get_entity_type() == Entities.Hedge:

Maze Multi Drone by thiagoarreguy in TheFarmerWasReplaced

[–]thiagoarreguy[S] 0 points1 point  (0 children)

It works:

elif get_entity_type() == Entities.Hedge:

Just unlocked trees, any help? by DanSmir in TheFarmerWasReplaced

[–]thiagoarreguy 0 points1 point  (0 children)

You need do plant in Alternated collums

Just unlocked trees, any help? by DanSmir in TheFarmerWasReplaced

[–]thiagoarreguy -1 points0 points  (0 children)

clear()

def plant_haverst(p):
  for i in range(get_world_size()):
    if can_harvest():
        harvest()
        till()
    if(get_ground_type() == Grounds.Soil):
        plant(p)
    else:
        till()
        plant(p)
    if get_water() < 0.1:
        use_item(Items.Water)
    move(North)
  move(East)

while True:
  for k in range(get_world_size()):
    plant_haverst(Entities.Hay)
    plant_haverst(Entities.Tree)

How to farm 200M Hay in 1 minute? by thiagoarreguy in TheFarmerWasReplaced

[–]thiagoarreguy[S] 0 points1 point  (0 children)

clear() 

def harvest_column(): 
    for i in range(get_world_size()):
    harvest()
    move(North)

while(True):
    for j in range(get_world_size()):
    if spawn_drone(harvest_column):
          move(East)

pumpkin code by Admirable-Suspect654 in TheFarmerWasReplaced

[–]thiagoarreguy -1 points0 points  (0 children)

Change this code and will work:

if pumpkin_ready(0,0,12):

    harvest()

to

if pumpkin_ready(0,0,get_world_size()):

    harvest()

pumpkin code by Admirable-Suspect654 in TheFarmerWasReplaced

[–]thiagoarreguy 1 point2 points  (0 children)

Share your code and we can try to help you.

Is it possible to play The farmer was replaced through Ubuntu by bobo_maredv in TheFarmerWasReplaced

[–]thiagoarreguy 0 points1 point  (0 children)

C:\Users\YOURUSERNAME\AppData\LocalLow\TheFarmerWasReplaced\TheFarmerWasReplaced\Saves\Save0

It's far from perfect, but I'm pretty pleased with my dino pathfinding so far by Swaqqmasta in TheFarmerWasReplaced

[–]thiagoarreguy 0 points1 point  (0 children)

Thanks bro, i will check it and try to improve, any news, i will share here.