Chatting Area! Have fun! (Part 1)

you won everything but an official game jam

(not trying to be mean its super cool the stuff you have accomplished, UAT 2, CK 4, maybe more that i dont know)

8 Likes

@richard I’ve also encountered the music bug you and woofy were talking about on stream by using this project

1 Like

okay but like that’s genuinely painful to listen to and not something that anyone would ever make, no?

1 Like

it was scamma…

2 Likes

C++ was the first non-blocks language I learned :rofl:

2 Likes

@RoboVacDev Time to return, summer break is over.

4 Likes

From what I’ve learned while programming in C, don’t do anything big at the start. Slowly figure things out, since C is really, really unfriendly. A piece of advice I’ve learned when I was starting to learn C, is to be very intentional with your memory, because C won’t ever hand-hold you (mostly).
I recommend using MakeFiles as well (Especially when having any external libraries included, such as SDL).
Good luck with C or C++!

5 Likes

Why is their so many doreamnon episodes

2 Likes

You should learn C++. the plus plus means it’s better even than C+, let alone C. Right?

7 Likes

Same for me for C++!

3 Likes

my second, my first was javascript because makecode has it

4 Likes

Well seemingly the chain ended there.

Summary

john rod

2 Likes

Hey guys! It’s me!
You know what that means…

I’m so back!!

I learned a lot over the summer. Just started with MIT App Inventor.
I am also learning-don’t crash out when I’m saying this-SCRATCH.
Had a really fun summer! Worked on my games. Hope @InvalidProject’s awesome game got into steam.
Lot of things changed I see. Would anyone be kind to help me catch up on what has been going on in the forums lately? Thanks!
So nice to see you guys again and that the forum is still thriving as ever!!

15 Likes

Dang, you guys are learning C++? I’m still stuck with HTML and Python lol.

5 Likes

yayyyyyy

yayyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

7 Likes

Me when i saw a makecoder join scratch and is happy be like:


oh, wait that’s me isn’t it.

4 Likes

me too

2 Likes

i know that every line of code must have one or more semicolons " ; " or else it wont work.

2 Likes

@richard you said in the last stream that the crash from playing too many notes will almost never happen, but that’s not true. Even after bug fixing, playing my pvz demake will still eventually crash cause the ost is always playing and looping, meaning it’s literally impossible to play longer than 15 minutes. While this bug is insignificant for tiny games and nonexistent for silent ones, it’s lethal to any sort of bigger game. You’ve likely never encountered this bug because you don’t put music in your games, and you probably don’t play the same game for very long because you’re busy.

8 Likes

C and C++ issue:

so, i was working on C and try making the average formula, but when i tried to use the variable sum which was supposed to add all the list but instead it didn’t add up.

#include <stdio.h>

int main() {
  int Numbers[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
  int i;
  int len = sizeof(Numbers) / sizeof(Numbers[0]);
  int sum;
  
  for (i = 0; i < len; i++) {
    sum + Numbers[i];
  }
   printf("%d\n", sum / sizeof(Numbers));
  return 0;
}

or in blocks this (i tried):


so, if anyone knows them reply to me, okay? thank you.

4 Likes