I Added Crafting to My Under Megabyte Sandbox Game

Поділитися
Вставка
  • Опубліковано 20 лис 2024

КОМЕНТАРІ • 35

  • @JoonaTheNPC
    @JoonaTheNPC 12 днів тому +32

    here before the game reaches 100KB

    • @lurple_
      @lurple_  12 днів тому +4

      Hehe we are pretty close to it, that'd make for a short visit, we're all gonna miss you my friend joona, don't go.

    • @JoonaTheNPC
      @JoonaTheNPC 11 днів тому +5

      ​@@lurple_ i wont go anywhere just flexing a lil 🤣🤣

  • @waterisaneurotoxin7788
    @waterisaneurotoxin7788 5 днів тому +7

    One of the most unique game devlogs.

    • @lurple_
      @lurple_  5 днів тому

      Happy you think so.
      Thank you so much for the comment

  • @csongorszecska
    @csongorszecska 9 днів тому +9

    Maintainability tip: use variable constants for colors and such. If you need to change them, this way you will only need to change a single value instead of using Find and replace each time. This reduces the opportunities for copypaste bugs to happen, and I know those happen the most of the times
    Also, I like that you describe each bug, it's extremely handy for beginner devs, since otherwise they need to figure out all of this by themselves

    • @lurple_
      @lurple_  9 днів тому +1

      Thanks for the tip, I appreciate it.
      And ofc 90 percent of development is just resolving bugs, so I feel like it's an important thing to show in these videos, and plus I think it's interesting as well, you know how bugs are produced, what causes them, what it goes to break in other systems and how to solve them in a sensible way.
      Thanks for the comment.

  • @LunarcomplexMain
    @LunarcomplexMain 11 днів тому +9

    Having things made with the overworld instead of an actual UI is such a kool feature for a game like this
    also suggestion: maybe have the quantity amount be numbers starting below the item and if above 9 have the value continue below it, so for 123 items, you'd have 1, then 2 below that, and 3 below that.

  • @mrjuaumbr
    @mrjuaumbr 11 днів тому +5

    Yooo, looks insane! Def i will buy if it's on steam

    • @lurple_
      @lurple_  11 днів тому +4

      You won't have to, it'll be totally free.
      Thanks for the comment

  • @ChocoMilccy
    @ChocoMilccy 11 днів тому +8

    You should add things like: sleeping, settings (like map size), and (because why not) credits!

  • @StreetSurfersAlex
    @StreetSurfersAlex 4 дні тому +1

    Damn, putting stuff on the ground was smart! saves a whole crafting menu

  • @masonnotjason8214
    @masonnotjason8214 4 дні тому +2

    very interesting challenge for a devlog; love this!

  • @Eliasdbr
    @Eliasdbr 12 днів тому +5

    I love this concept of simplistic sandbox! It inspired me to make a similar concept for a small game

    • @lurple_
      @lurple_  12 днів тому +1

      Love to hear that, feel free to share with us if you want to of course, in the discord server, or keep us updated in the comment sections, I'm sure we all would love to hear about your project.
      Thanks for the comment.

  • @Jas42-ne3re
    @Jas42-ne3re 4 дні тому +1

    Atari are quaking in their boots rn

  • @weirdthing729
    @weirdthing729 5 днів тому +1

    i am so hyped for when this comes out

  • @SomethingSmellsMichy
    @SomethingSmellsMichy 8 днів тому +1

    Strike the earth!

  • @Bo-kq8tn
    @Bo-kq8tn 12 днів тому +2

    really cool crafting mechanic! How about adding a little chair and table set?

    • @lurple_
      @lurple_  12 днів тому

      I don't see why I shouldn't.
      Thanks for the suggestion and the comment.

  • @logon-oe6un
    @logon-oe6un 12 днів тому +6

    You could add a "defaultTile" variable that is set each time a biome is loaded so you can't summon grass each time a tile is emptied. Seems a bit jarring.
    Unrelatedly: I respect actually pasting the code for each item (makes them very readable), but I think it may be way more B theoretically used up by text.
    On the other hand, text compression should be doing something, and a refactor would be very boring.

  • @darqed
    @darqed 4 дні тому +2

    the inventory numbers are extremely unsightreadable they should definitely be vertical instead of horizontal because then it wouldn't push the values next to it

  • @dhmmasson
    @dhmmasson 11 днів тому +2

    1:27 I thought there was a secret message in the strickthrough text (mine brayetet...) ?

    • @lurple_
      @lurple_  11 днів тому

      Hehe not really, but now I wish I did hide a secret message there.

  • @LonelyTurtle-xd5yb
    @LonelyTurtle-xd5yb 11 днів тому +5

    Is it possible to make some sort of procedural generation where biomes blend together smoothly?

    • @lurple_
      @lurple_  11 днів тому

      I'm pretty sure, I'll definitely look into it.
      Thanks for the comment.

  • @Krazy0
    @Krazy0 6 днів тому +1

    hey dude nice idea, is the rule for the series to limit game's source or build to be less than a megabyte?

    • @lurple_
      @lurple_  6 днів тому

      The whole game to be under 1 megabyte, all the scripts that make up the game.
      Thanks for the comment.

    • @Krazy0
      @Krazy0 6 днів тому +1

      @@lurple_ Nice, good luck!

    • @lurple_
      @lurple_  6 днів тому

      Thanks, appreciate it.

  • @lilhappy2456
    @lilhappy2456 11 днів тому +1

    Nice

  • @Gunbudder
    @Gunbudder 3 дні тому +1

    I find your use of magic strings disturbing.
    Imagine if you need to change one of the tile letters. How many if statements with magic strings would you need to fix??? lol

    • @lurple_
      @lurple_  3 дні тому

      You're definitely right, all the scripts that had code dealing with tile replacement was very bloated and repeated code, I was able to remove all the repeated lines in the code, which lowered the games storage by half.
      Thanks for the comment.