Page 3 of 3

Re: Crappy games

Posted: Sat Aug 05, 2023 5:53 pm
by Sodium
require is case sensitive, youve made an oopsie.
Works fine for me and I can't find the oopsie in the code, maybe its because I'm on Windows.
what kind of gameplay where you planning to put into it?
2D Minecraft, but no player character only the mouse pointer.
The code became a chaotic mess and the "gameplay" was completely devoid of anything resembling "fun".

Re: Crappy games

Posted: Sat Aug 05, 2023 7:47 pm
by GVovkiv
Sodium wrote: Sat Aug 05, 2023 5:53 pm Works fine for me and I can't find the oopsie in the code, maybe its because I'm on Windows.
It is. Windows is kinda case insensitive, so if your would require paths like:
library = require("superlibrary") when file called "superLibrary", you still will be able to load this file.
And on any other then Windows os, your code will fail due to fact that other OSs is in most cases case sensitive. So it will be good idea to make sure that whenever you load some file to check if file path and/or name is same case as in code.

Re: Crappy games

Posted: Sat Aug 05, 2023 8:43 pm
by Sodium
You are right, I've fixed and updated the love file in my original post.

Re: Crappy games

Posted: Sun Aug 06, 2023 8:09 pm
by Pinko
BrotSagtMist wrote: Sun Jul 23, 2023 10:58 pm Doesnt start, how crappy. :/
A game, that even wont start, should get factor 0 on the crappy games scale, that has a open end. :D Most games wont get more than 5 points.

CGS 0

Pinko

Re: Crappy games

Posted: Tue Aug 29, 2023 8:28 pm
by manfredos
Well, hello anyone, I'm new here.

My kid asked me to give her some programming lessons. I agreed, with one condition: we are not starting programming lessons in roblox studio. So, I needed to get into some game framework in lua which will have less distractions, because raw lua exec/repl did not inspire even me.

here is it.
happy.love
(1.38 MiB) Downloaded 134 times
I'm somewhat scaried to explain series of concepts to 8 y.o, but I suceeded with basic trigonometry and functions, so wish me some luck :)

Re: Crappy games

Posted: Sat Sep 02, 2023 5:29 pm
by Pinko
manfredos wrote: Tue Aug 29, 2023 8:28 pm Well, hello anyone, I'm new here.

here is it. happy.love

I'm somewhat scaried to explain series of concepts to 8 y.o, but I suceeded with basic trigonometry and functions, so wish me some luck :)
Hello manfredo, and welcome to this forum!

Your program is quite good! I call it "falling cats" hehe.

Pinko