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)
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)
@richard I’ve also encountered the music bug you and woofy were talking about on stream by using this project
okay but like that’s genuinely painful to listen to and not something that anyone would ever make, no?
it was scamma…
C++ was the first non-blocks language I learned ![]()
@RoboVacDev Time to return, summer break is over.
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++!
Why is their so many doreamnon episodes
You should learn C++. the plus plus means it’s better even than C+, let alone C. Right?
Same for me for C++!
my second, my first was javascript because makecode has it
Well seemingly the chain ended there.

Hey guys! It’s me!
You know what that means…
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!!
Dang, you guys are learning C++? I’m still stuck with HTML and Python lol.
me too
i know that every line of code must have one or more semicolons " ; " or else it wont work.
@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.
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):