SUPER Unique Idle Automation Game!! - The Farmer Was Replaced - Minimalist Programming Game

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

Комментарии • 192

  • @timon7651
    @timon7651 6 месяцев назад +721

    Awesome! Thank you so much for playing my game

    • @SappyEuphoria
      @SappyEuphoria 6 месяцев назад +95

      Thank you for giving the drone a farmers hat

    • @rexxthunder
      @rexxthunder 6 месяцев назад +32

      I bought this because of this video. It's really good, great job!

    • @adli5171
      @adli5171 6 месяцев назад +13

      this is such a cool conceptttt thanks for making it

    • @Koroistro
      @Koroistro 6 месяцев назад +7

      does it support vim motions?

    • @fuzzy-02
      @fuzzy-02 6 месяцев назад +7

      Try seeing if Primeagen would play it

  • @d34d10ck
    @d34d10ck 6 месяцев назад +488

    "It looks funky but it kinda works. There's clearly something that's not quite right here, but it works."
    Congratulations. You are officially a programmer now.

    • @IAmGarimon
      @IAmGarimon 6 месяцев назад +47

      "If it looks stupid and it works, it's not stupid." -- programmers everywhere, probably

    • @pedikun
      @pedikun 6 месяцев назад +38

      CTRL c
      CTRL v
      it's not your code it's our code

    • @loganshaw4527
      @loganshaw4527 6 месяцев назад +6

      Also some weird
      if true: can harvest
      harvest
      if not true
      a)move north
      Else: b) at 0:2 move east 1:0
      c) at 1:2 move east 2:0
      d) at 2:2 move west 0:0
      But not a programmer but you would think you would have to number movement

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад +21

      “One of us, one of us” - I can hear the chants!

    • @bagok701
      @bagok701 6 месяцев назад

      ​@@orbitalpotato Tod Browning's Freaks - the 1932 cult horror classic film about circus sideshow freaks.
      """Attention! Attention! We'll make her one of us. A loving cup! A loving cup!"""
      """We accept her one of us
      We accept her one of us
      Gooba Gabba Gooba Gobble
      One of us One of us"""
      """How she got that way will never be known.
      Some say a jealous lover.
      Others, that it was the code of the freaks.
      Others, the storm.
      Believe it or not, there she is."""

  • @errorhostnotfound1165
    @errorhostnotfound1165 6 месяцев назад +114

    It's always so fun to watch someone unfamiliar with programming try their best to program something xD
    Love to see it :D

    • @loganshaw4527
      @loganshaw4527 6 месяцев назад +3

      Game is more helpful with programming then most game maker games.

    • @jayr0x
      @jayr0x 6 месяцев назад +4

      I just wanted to help him move that ) so bad.

  • @andrewclarke8163
    @andrewclarke8163 5 месяцев назад +9

    This looks like a fantastic way to get into coding.
    It does so many small things right, like good IDE-style autocomplete and subtly getting you used to sifting through technical documentation very similarly to how professionals do it in the real world.

  • @NoonKnite
    @NoonKnite 6 месяцев назад +24

    long time programmer here and i can't get enough of this game. if you enjoy programming you'll love it!

    • @DenDodde
      @DenDodde 6 месяцев назад

      If you actually enjoy programming you should try bitburner instead.

    • @maxpoppe
      @maxpoppe 5 месяцев назад

      not sure, feel like I'd complete this game way too fast

  • @wesleycoder
    @wesleycoder 6 месяцев назад +40

    Awesome game to go with the meme of programmers becoming farmers.
    As a dev this is really amazing to me.
    Definitely will spend dozens of hours on this.

  • @stevenrobinson5864
    @stevenrobinson5864 6 месяцев назад +85

    As a developer, your code causes me so much pain 😂 good effort though.
    1 issue would be duplication of code, for example move(north) within every if statement, just stick a move at the end of the while loop in that case.
    Also, when move east then south twice, you could move east then move north to be back at position 0.

    • @loganshaw4527
      @loganshaw4527 6 месяцев назад +2

      How would that look?
      If true can Move north
      Move North: loop
      If not true Move East
      If Move East is true
      Move east
      If not true
      Move west south twice

    • @pw2020
      @pw2020 6 месяцев назад +7

      @@loganshaw4527 for 3x3 tile, since move north at the end of the map teleport the drone back to y=0 and move east at the end of the map teleport drone back to x=0, then this code should work
      while true:
      if get_pos_y() == 2:
      move(East)
      move(North)

    • @loganshaw4527
      @loganshaw4527 6 месяцев назад

      @@pw2020 thank you. The first episodes for this game feels like tutorial. So always nice to hear about different ways to program.

    • @NovaHorizon
      @NovaHorizon 6 месяцев назад +5

      @@loganshaw4527 Back when he first expanded to 3 he built the while loop that just moved north if he couldn't harvest. But without checking positioning once he had the 3x3 and the for loop option you could do:
      While true:
      for i in range(3):
      harvest()
      move(North)
      move(East)
      What this code will do is harvest then move north repeated 3 times. The third time would be from block 2 back to block 0 (as the game's move command loops back to zero when you try to exceed the bounds of that direction.) Since that third move(North) resets your position to block 0, you can just safely move(East) as you've finished the first column in the grid.

    • @loganshaw4527
      @loganshaw4527 6 месяцев назад +1

      @@NovaHorizon nice. So clean.

  • @errorhostnotfound1165
    @errorhostnotfound1165 6 месяцев назад +41

    25:57 a very common mindset when programming anything lol
    "if it works, it works"

    • @Soken50
      @Soken50 6 месяцев назад +2

      Also: "please just work (how I want you to)"

    • @errorhostnotfound1165
      @errorhostnotfound1165 6 месяцев назад

      @@Soken50 lol yeah, going through all the stages of grief: bargaining vs acceptance

    • @zigaudrey
      @zigaudrey 3 месяца назад

      I don't care about if the code is long or short, it has to work and does I what I want.

    • @errorhostnotfound1165
      @errorhostnotfound1165 3 месяца назад +1

      @@zigaudrey fr

  • @KentHambrock
    @KentHambrock 6 месяцев назад +12

    You're writing code that's based on Python, the indentation isn't about making the code look nice, it's literally the only way the code will work. Plenty of software engineers also hate this about Python xD

    • @PaulFisher
      @PaulFisher 5 месяцев назад +4

      but at the same time, an about equal number of people love that about Python 😜

  • @commanderpower79
    @commanderpower79 6 месяцев назад +11

    This is not my game. But its very very cool. The coder in me is happy, and horrified.

  • @johannswart9859
    @johannswart9859 6 месяцев назад +10

    Love the video, I'm a full time programmer and you did well. Don't say "I'm not made to be a programmer" even starting out can be difficult. This game looks like a good entry level game for people that wants to start learning programming. I'm not sure but the code structure looks like python.

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад +1

      Thanks for the warm words :) appreciate it amigo

    • @rafadelneg6080
      @rafadelneg6080 6 месяцев назад +1

      Yep. It completely look like pythonq

  • @ratsy1302
    @ratsy1302 6 месяцев назад +73

    In an ironic twist, the Potato learns to program.

  • @Max-jq3qz
    @Max-jq3qz 6 месяцев назад +45

    Always a pleasure to discover a new game thanks to you ! I must admit though that as a programmer, seeing a "while true" breaks my soul xD

    • @robinmaurer2645
      @robinmaurer2645 6 месяцев назад +3

      I feel you xD but hes doing well

    • @Zirnike
      @Zirnike 6 месяцев назад +16

      Should have used while false. Saves a lot of cpu time.

    • @7sete777
      @7sete777 6 месяцев назад +17

      Bruh thats litterally how games are programed, the so called "game loop"

    • @SplinterBreak
      @SplinterBreak 6 месяцев назад +17

      Nothing wrong witha while true. Lots of code uses it, you just normally have a break condition. It can made variable scoping neater since you can occasionally exclude a termination variable.

    • @havenselph
      @havenselph 6 месяцев назад +6

      Literally no issue with while True man

  • @ortassa1096
    @ortassa1096 6 месяцев назад +23

    its actually funny i just finished the final exam in computer science and i just wanted to watch my favorite youtuber and vwalla more programming :- )

    • @Flusterbomb
      @Flusterbomb 6 месяцев назад +2

      What language is vwalla?

    • @kiripedia
      @kiripedia 6 месяцев назад +2

      @@FlusterbombI think they meant voilà, which is French xD

    • @errorhostnotfound1165
      @errorhostnotfound1165 6 месяцев назад +1

      Just finished my Comp Sci final exam today as well lol

    • @chalkeater1427
      @chalkeater1427 6 месяцев назад +4

      I think vwalla has a certain Jenna-say-quah to it.

  • @tuqann
    @tuqann 6 месяцев назад +5

    Finally, the other game I'll be playing apart from Helldivers 2.
    The dryspill is over ❤

  • @boomknuffelaar
    @boomknuffelaar 6 месяцев назад +15

    For people who want to try this kind of gameplay in minecraft, there's the computercraft mod. It leads to really creative gameplay so I'd love to see what this game grows into.

    • @portal2fanreal
      @portal2fanreal 6 месяцев назад +5

      Yeah these are really similar! Only difference is this game uses a language based on python and cc uses Lua if I recall correctly

    • @hiabst
      @hiabst 6 месяцев назад

      @@portal2fanrealyeah cc uses lua

  • @cefcephatus
    @cefcephatus 6 месяцев назад +1

    As a programmer by trade, I can see this is an excellent REPL learning tool!

  • @XoIoRouge
    @XoIoRouge 6 месяцев назад +4

    Okay, this game sold me immediately, I'm buying this for sure, but it also sold me on you. Good pacing, intelligence, humility, etc. Look forward to more. I'm not finishing this video past 9 minutes because spoilers. :)

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад +1

      Welcome aboard! And thanks for the kind words

  • @SeigneurDMorts
    @SeigneurDMorts 6 месяцев назад +1

    The 2 things I say the most while playing :
    "It doesn’t work… Why ?"
    "It works !!… why ?!"
    😂😂

  • @danmerillat
    @danmerillat 6 месяцев назад +2

    You sold me on this by fumbling the movement so bad I had to buy it just to make a better carrot loop, excellent work.

  • @drottningu
    @drottningu 6 месяцев назад

    I believe learning to program is one of the most empowering things you can do! I love this game

  • @Beaurisque
    @Beaurisque 6 месяцев назад +27

    That looks great !
    I'd appreciate if you could say at the start 1) if the game is in early access (or if it's already launched, maybe the date?), 2) the price !
    Thanks, great videos as always.

    • @slaskos
      @slaskos 6 месяцев назад

      or google it yourself

    • @onlyme0349
      @onlyme0349 6 месяцев назад +1

      the store page is in description

  • @justinlawson4268
    @justinlawson4268 6 месяцев назад

    I just finished a MATLAB course, and I found this particularly entertaining. Thank you Sir, for your contribution to my daily dose of RUclips.

  • @KerboOnYT
    @KerboOnYT 6 месяцев назад

    Control a drone with Python? I'm in! What a fun little game

  • @359Aides
    @359Aides 6 месяцев назад

    Watching this after watching Olexa's video you wouldn't guess which of you does programming in their day job 😆
    Really well done! There are a couple of things that could be improved but for all the amount of you saying that you were no programmer it really seemed like you have the right mindset right from the start.

  • @TReyeHD
    @TReyeHD 5 месяцев назад

    I got a bit stuck with the for loops until I found out how it works.
    for moveEast in range(get_world_size()):
    for moveNorth in range(get_world_size()):
    do_defined_action_containing_move_north_call()
    move(East)
    Once I had that I just sat back and watched the drone do all the work.

  • @helicoidcyme
    @helicoidcyme 6 месяцев назад +1

    this was a lot of fun! you should play more programming games

  • @SmartLifeEnthusiast
    @SmartLifeEnthusiast 6 месяцев назад

    I would love for this game to be available on mobile.
    Looks like a fun thing to do e.g., while travelling by train

  • @Voen_Sveta
    @Voen_Sveta 6 месяцев назад

    wow, looks great) you should probably separate movement to the next tile from processing current tile. do whatever you need to be done in tile, than detect where you are and move

  • @Dank
    @Dank 6 месяцев назад +1

    The num_items issue around 18:30 bothers me so much I saw the mistake being made and wanted to scream

  • @onlyme0349
    @onlyme0349 6 месяцев назад +1

    bought the game and loved it, thanks for bringing awareness to it

  • @einsford9894
    @einsford9894 6 месяцев назад +1

    That's an awesome game and an awesome way to learn to code

  • @GeorgMierau
    @GeorgMierau 3 месяца назад

    So, it's more game-like version of Swift Playgrounds "Learn to code" but not only for iPads? Cool! Might try with my students this year!

  • @Mr76Pontiac
    @Mr76Pontiac 6 месяцев назад +1

    At 22:38 you mentioned "Code Discipline". Python enforces this kind of behaviour, with the additional unseen benefactor that you must choose between space, or tabs, for indentation. It'll actually complain if you switch between that (At least when I use an external editor). It's part of the language construct, not part of any discipline. There are languages that don't require this, and it allows for some more "creative structures", and I'm not ENTIRELY on board with Pythons style of coding, but, it is what it is.

  • @Kobay350
    @Kobay350 6 месяцев назад

    I just got home from work doing code reviews and bug investigation and this is what youtube thought i wanted to see?..... Okay yeah its got my interests about right.

  • @larkendelvie
    @larkendelvie 6 месяцев назад +1

    Thanks Orbital -- looks like a great game!

  • @xd_Corruption
    @xd_Corruption 6 месяцев назад +2

    I don't think you ever needed to move South since you loop back to the bottom if you keep going North. So I believe you could just use the move(East) command without the move(South) ones.

    • @wojtek9675
      @wojtek9675 6 месяцев назад

      You’d lose time by having to travel all the way back instead of just moving south.

    • @xd_Corruption
      @xd_Corruption 6 месяцев назад +1

      Not from what I could see. The bot was doubling back over and over.

  • @woobilicious.
    @woobilicious. 6 месяцев назад

    The issue with your code near the end is that the if chain is exclusive, only one statement will be run, and because the first if is true due to hay being low, it never runs the carrot planting section.
    also recommend trying to keep everything flat, split the while loop in to three sections, a harvest section, a planting section and a moving section. nested if's will cause headaches.

  • @Pheonix1328
    @Pheonix1328 6 месяцев назад +2

    Fyi, this is based on Python and that language needs the indents to work at all, so it's not just good programming practice in this case. Something like Java on the other hand can all be on one line.

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад +1

      Indeed! My very brief dive into coding was with Java, hence my comment

  • @chasedaily8134
    @chasedaily8134 6 месяцев назад

    This looks fun! Been wanting to do some basic programming stuff and this looks like interesting way to get my head around it.

  • @Akniy
    @Akniy 5 месяцев назад

    For a programming language that does not use curly brackets the indentation is very important or else it won't know when the block end

  • @oneoranota
    @oneoranota 6 месяцев назад +1

    I heard they have made a live version of this idle game in real life !
    It's called "I am actually a farmer" and you can make actual money by selling your crops ! The growth rate is pretty slow, though. Also, it's a bit pay to win.

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад

      Real life farming sim costs a lot more than this game does haha

  • @Cybarxz
    @Cybarxz 6 месяцев назад +1

    This game is so perfect!!! OMG I miss programming 😭😭

  • @Rebecca.G
    @Rebecca.G 6 месяцев назад

    I had no idea programming was similar to figuring out Excel formulas lol

  • @thisflyingpotato4227
    @thisflyingpotato4227 5 месяцев назад

    I just wanna say, I'm a big fan of your channel name

  • @betterstayout0
    @betterstayout0 6 месяцев назад

    Ah man I love your fantastic work. Thanks for showcasing so many great games. Great video! You're so fun heh

  • @TheNamesJT
    @TheNamesJT 6 месяцев назад

    try this for carrots guys. You need senses and operators for this to work and, you also have to first buy seeds first
    while True:
    for i in range(get_world_size()):
    move(North)
    if get_ground_type() == Grounds.Turf:
    till()
    elif get_ground_type() == Grounds.Soil:
    if get_entity_type() == None:
    plant(Entities.Carrots)
    if get_entity_type() == Entities.Carrots and can_harvest():
    harvest()
    if get_pos_y() == 2:
    move(East)

    • @MilanFlower-dk5cm
      @MilanFlower-dk5cm 6 месяцев назад

      I feel a good idea is to plant immediately after harvesting (unless you need hay). If you plant then harvest the code will never be nice.

  • @darkangel8478
    @darkangel8478 6 месяцев назад

    THATS so cool. I JUST bought the game. I will try it

  • @matthewtalbot-paine7977
    @matthewtalbot-paine7977 6 месяцев назад

    Hey programmer here, just thought I'd share something based on what you've done at 9:26 You see how both if and else both plant and then move north? Just have the if harvest and have the rest outside of the if statement so it does it either way. Also I think it's wierd the way the dev has made you pick entities.bush this seems to be simulating an enumeration which is effectively a list of things of a certain type but you generally wouldn't have 1 called entities as that's too vague and would contain every object I'd have made it plants.bush and then the direction would be directions.North perhaps.

  • @PERSISTENTxMF
    @PERSISTENTxMF 6 месяцев назад

    Love this! This actually looks fun.

  • @MuseumFreedom
    @MuseumFreedom 6 месяцев назад +1

    I love watching adults have trouble with coding :) ❤

  • @sindahir3
    @sindahir3 6 месяцев назад +1

    nice game. learning programming while playing

  • @matthewtalbot-paine7977
    @matthewtalbot-paine7977 6 месяцев назад +1

    If you find something like testing the current situation mentally taxing you can always just tell it what to do with each line so for the 3x3 grid you had you can just tell it harvest, plant bush and move north 3 times then go east and put all that in a loop and you should end up with it harvesting and planting a row and then moving to the next and by the time you got back to the first row the bush would have grown there and be ready for harvest and even if it wasn't you can just add do a flip for as long as you need to delay it. So;
    While true:
    harvest();
    plantbush();
    movenorth();
    harvest();
    plantbush();
    movenorth();
    harvest();
    plantbush();
    movenorth();
    moveeast();
    Notice how this code has no if statements nothing clever at all and as you increase in size all you need to do is increase the number of times you repeat the 3 repeated commands by the number of rows you have and add delays later if you change crop as well as adding delays if they are needed. Obviously this requires adjustment every time something changes with the farm and it would be nice to not have to but this game seems to want you to change your code constantly as part of it so it may as well be not very taxing for you.

  • @saadharta8057
    @saadharta8057 6 месяцев назад

    I wish you the best of luck to handle the Pumpkin patches :)

  • @maxpoppe
    @maxpoppe 5 месяцев назад

    watching this as a programmer hurts my soul, I just wanna optimize or fix all the problems in your code lol

  • @audrianmarak1574
    @audrianmarak1574 5 месяцев назад

    Python...
    Could've been something else, bring in assembly for hardcore mode lmao

  • @randomsandwichian
    @randomsandwichian 6 месяцев назад

    Today Orbital Potato experiences self actualisation

  • @kimberly4275
    @kimberly4275 6 месяцев назад

    I have 0 idea about coding but I'll give it a shot lmao

  • @Kossak_
    @Kossak_ 6 месяцев назад

    Thanks! Didn't know about this game and it seems to be awesome. At last programming game with python syntax :)

  • @BaselessConfusion
    @BaselessConfusion 6 месяцев назад +1

    yall ever write something then go back to check it because it caused issues later on, only to look at it and wonder what the hell you were thinking when you wrote it?

  • @PauperJ
    @PauperJ 6 месяцев назад

    There's nothing idle about the OP-144 factory workers.
    Comrade Dictator Potato makes sure they work for 22 hours without a break.
    "They have time to break during those two hours I give them each day," Comrade Potato was quoted in an interview.

  • @nati0598
    @nati0598 6 месяцев назад

    That first else statement looked completely reduntant, other than making a ton of time waster :P

  • @CppExpedition
    @CppExpedition 6 месяцев назад

    AWESOME GAME DUDE!

  • @yuboon
    @yuboon 6 месяцев назад +3

    Too easy for someone with a programming job, but I can see how it can be a great learning tool for beginners.

    • @alexpollan1934
      @alexpollan1934 6 месяцев назад

      I'm fairly certain late game things get pretty complex and maximum Optimization becomes challenging

  • @True_Grind
    @True_Grind 6 месяцев назад +1

    Man I would love if this game was free. It can literally be used by schools to teach kids code instead of using paint...

  • @bloodyping9644
    @bloodyping9644 6 месяцев назад

    The indentation of this game is not for style, this game uses python style syntax, which uses indentation to define the scope of a function.

  • @CppExpedition
    @CppExpedition 6 месяцев назад

    Hey, GOOD STUFF!

  • @wietse1650
    @wietse1650 6 месяцев назад

    You sound like that riven main in challenger on lol whos videos i used to watch. Think his name is davey smth

  • @imanshojaee5109
    @imanshojaee5109 6 месяцев назад

    As a programmer, you made me cry.

  • @AndreaDev3D
    @AndreaDev3D 6 месяцев назад

    I love this game, is so cool, please more X)

  • @chaz706
    @chaz706 5 месяцев назад

    Done is better than perfect.

  • @jonymanolo
    @jonymanolo 6 месяцев назад

    the indentation is most probably because is using python to read it, an is the way that works :)

  • @lainverse
    @lainverse 6 месяцев назад +1

    Orbital Potato encounters his natural enemy. Logic.

  • @kennyalbano1922
    @kennyalbano1922 6 месяцев назад

    For the 3 by 3. Is there a way to simply move north followed by moving right. Then repeating? This would allow traversing a square grid of any size from any initial starting position with an equal amount of time on all cells without any specification of the grid dimensions.

  • @MrDapperGent
    @MrDapperGent 6 месяцев назад

    Fascinating

  • @Bonesters
    @Bonesters 6 месяцев назад

    Looks like python code to me. It might end up being an interesting idle kind of game depending on how much there is to it.

  • @hrsfic
    @hrsfic 5 месяцев назад

    This looks fun :p

  • @DenDodde
    @DenDodde 6 месяцев назад

    Sooo.. Bitburner next? :)

  • @davidaugustofc2574
    @davidaugustofc2574 6 месяцев назад

    21:01 this entire bug could be solved by simply harvesting the grass before moving East and South.
    Same about the more than 200 which you changed to less because you couldn't make the code work, I think the intent was to have 200 wheat in stock?

  •  6 месяцев назад

    Reminds me COLOBOT ;)

  • @NovaHorizon
    @NovaHorizon 6 месяцев назад +1

    So the reason why you have to indent isn't a code discipline thing in the game. The developer is using a Python-esque interpreter for you to write code in. Python itself is a language that uses indentation to identify code blocks. The different language styles are like this:
    ------------------
    if (true) {
    Do some stuff
    }
    ------------------
    if true:
    Do some stuff
    ------------------
    if true
    begin
    Do some stuff
    end
    I'm sure there are other formats as well, but those are the ones I can think of. Why does it need the indent to identify?
    Well if you have
    while true:
    if can_harvest():
    harvest()
    move(North)
    the language doesn't know whether "move(North)" is inside the if statement block or if you just always move after checking whether you can harvest. It could be
    while true:
    if can_harvest():
    harvest()
    move(North)
    or
    while true:
    if can_harvest():
    harvest()
    move(North)

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад +1

      For all my sins, I’m not a python expert at all. I did however learn a little Java so my comment was based on that (very shallow) dive into programming!

    • @NovaHorizon
      @NovaHorizon 6 месяцев назад

      @@orbitalpotato That's perfectly fine. My response was only intended to be educational.

  • @shoham11220
    @shoham11220 6 месяцев назад

    amazing game

  • @Firestorm-tq7fy
    @Firestorm-tq7fy 6 месяцев назад

    I love the video, but it hurts watching u programm as a software dev mysef 😅❤

  • @EmM-ko7mu
    @EmM-ko7mu 6 месяцев назад

    idk how to start on the maze at all unless its random movements.

    • @orbitalpotato
      @orbitalpotato  6 месяцев назад

      I imagine it’s got something to do with checking if the drone can move in a certain direction!

  • @Apophlegmatis
    @Apophlegmatis 6 месяцев назад

    Would this work:
    While canharvest()
    Harvest()

  • @nvs-different-ideas
    @nvs-different-ideas 5 месяцев назад

    This game is 7€. Better to make one better. The 3D graphics and the code reader are easy to make

  • @pete104242
    @pete104242 6 месяцев назад +1

    Count me impressed, for a non programmer well played, the language looks a lot like python, perhaps you should download Godot and follow a Game tutorial, the default language is very similar!

    • @errorhostnotfound1165
      @errorhostnotfound1165 6 месяцев назад

      You've probably been asked this before, but what/how is that OP thing in your username? It doesn't look like plaintext but I didn't think anything else was possible

    • @pete104242
      @pete104242 6 месяцев назад

      @@errorhostnotfound1165 I have been a member for over a year, it should tell you if you hover over it. And thats the first time I've been asked :) Have a great day!

  • @EmM-ko7mu
    @EmM-ko7mu 6 месяцев назад

    is there no way to move north 3 and then move south on the next row to not waste a move turn?

    • @sirgouki6207
      @sirgouki6207 6 месяцев назад

      you have to be clever about it, and you can only do it well after operators are unlocked. you can't do something like if x == 2 until then.

    • @EmM-ko7mu
      @EmM-ko7mu 6 месяцев назад

      @@sirgouki6207 I got it thanks just needed more unlocks for it to work. I was trying to be too efficient too fast.

  • @gabeowser9881
    @gabeowser9881 5 месяцев назад

    u didnt even get to the part where it makes u sort cuctuses by hight

  • @MrMartinBoo
    @MrMartinBoo 6 месяцев назад

    What's the name of the game?

  • @TheAtomicANetwork
    @TheAtomicANetwork 6 месяцев назад

    basicly: Learn basic programming skills in game form

  • @attilakovacs6496
    @attilakovacs6496 6 месяцев назад

    Anyone can tell me, do tab and shift+tab work with multiple selected lines?

  • @SriramGopalakrishnan-me
    @SriramGopalakrishnan-me 6 месяцев назад

    Welcome to python!

  • @TheNamesJT
    @TheNamesJT 6 месяцев назад

    9:08 planet(Entitiees.Bush) also returns true or false if it planted so you could have used that in an if statement in your logic. It was cool to see your way of getting around this as well.....props

  • @dgaf9843
    @dgaf9843 6 месяцев назад

    Where do i get this? Is it on steam?

  • @toymanjosh
    @toymanjosh 6 месяцев назад

    1h

  • @ortassa1096
    @ortassa1096 6 месяцев назад +1

    first

  • @foggywaters101
    @foggywaters101 6 месяцев назад

    Ho, bud, just so you know, youtube is putting temu adds on your content, so I am not going to watch.

    • @sliceableuser5968
      @sliceableuser5968 6 месяцев назад +3

      He can't choose who advertises to him

    • @foggywaters101
      @foggywaters101 6 месяцев назад

      @@sliceableuser5968 Thanks, but RUclips advertisements are unregulated, monstrous and frankly getting out of hand.. I have nothing against the creator, but the Temu scam came on and turned it off. I wanted to let the creator know in case the metrics looked odd so it was clear it was not the content but RUclips's decision to advertise. Also, RUclips scans comments, so who knows, it might feed back to them. Equally, if it is a new creator and the RUclips ad is over 5 seconds to skip, I will just turn it off. if it is someone I enjoy but an old video max 15 seconds, and if it is a new video from a popular RUclips I am subscribed to, I might hang on for 30 sec, but recently, I have been getting + 55-second ads for random toss videos.