I hate working in the evening so much, I feel like I'm spending my whole day anxious and on edge. Usually I just get up and get there.
That's so sweet 
Thank you. Still have quite a bit of game left, maybe when I'm done I'll post my full solution. Got the 2d array and going back to only dead pumpkins working. Still one issue I'm working out..
It is a bit odd, when started writing this function I went back to the move() docs hoping I could give it a number as well but no.
Yea it is, I don't think I've played an edutainment game in a long time tbh. Hardly ever hear about them.
Can't express enough how much I hate people. Transphobia is fucking everywhere. look at how it polls even.
spoiler
I just need to leave. I hate what my life has become, what it is. I hate other people. I hate my own fleshy and blood. The body I am in. What does this even leave me with.
People suck so bad. Almost all of them, if you let them talk enough. Literally look at what the average person believes. How they act. They are terrible. I do not want to live surrounded by such demons.
And my own, incurable, dysphoria. Kill me
suicide
I AM SO SICK OF THIS SHIT!!!
Feeling incredibly pessimistic and doomer, thinking about both my personal transition and the world at large.
I've been playing this game called The Farmer Was Replaced, you control a drone using python. Basically a sneaky way to practice beginner level python. It plays a bit like an idle/incremental game as well which I like. I've been wanting to kinda get back into python so this has been nice
I wrote a function to move my drone to any arbitrary coordinates. I spend a lot of the game basically just looping over the farm. But anyway, new crop gets a multiplier it fills the field. BUT there's a chance for it to die, therefor not combining. So I wanted a way to plant the field, then be able to go back and selectively replant instead of having to fly over the entire field. Right now I have to fly over everything if even one crop died. I think the best way to keep track of dead crops is a 2d array, also need to figure out a way to pick the nearest crop to fly to. That's definitely going to be harder. BUT anyway the fly code felt super satisfying to figure out even if the solution looks simple
comments were just me working through the problem.
code
# if we are at 1, 1 and we want to go to 0, 5
def fly(target_x, target_y):
current_x = get_pos_x()
current_y = get_pos_y()
difference_x = current_x - target_x
# 1 - 0 = 1
# this needs to translate to moving 1 west
difference_y = current_y - target_y
# 1 - 5 = -4
# this needs to translate to moving 4 north
if difference_x >= 0: # number is positive, move west
for x in range(difference_x):
move(West)
else: # number is negative, set absolute and move east
difference_x = abs(difference_x)
for x in range(difference_x):
move(East)
if difference_y >= 0: # number is positive, move south
for x in range(difference_y):
move(South)
else: # number is negative, set absolute and move east
difference_y = abs(difference_y)
for x in range(difference_y):
move(North)
return
fly(5,3)
fly(2,7)
fly(5,0)
fly(2,7)
fly(0,0)
I've fallen asleep in my headphones twice now and now the ear cups are all ripped up. Have to order new ones. At least I can get replacements
I can't imagine linking the fact I have 13 million dollars of anonymous, non refundable, easily stolen currency back to my real identity.
BountifulEggnog
0 post score0 comment score

felt fucking great, come home and now its just :/ I could cry. Just hit me. I'm lonely I think. And dissatisfied with life.