I'm making a game and am so confused.
-
Press “See inside.” I need ideas, and help on a money system. https://play.creaticode.com/projects/65e5e7360748c19e6a8c6e54
-
Can you be more specific? What kind of game is this? How to play and how to win? What does the ‘money system’ do?
-
@info-creaticode Okay, so far, there’s no way to “win.” It’s an explore type of map. Then you press “Q” while touching the starbase, (This is Star Trek, mind you,) and it opens the shop. I want the player to be able to earn credits they can use to buy upgrades and better ships.
-
@shrukin a money variable, it changes when they earn money, and if it’s greater or equal to the cost of something they try to buy, reduce by the cost and give them the reward
-
You might want to try the CreatiCode XO to help you brainstorm. It is not perfect but might give you some suggestions to explore. You can ask any question:
-
Ok, thanks guys!
-
all right, next I need enemys and scrolling background… great. I hate 2-d sometimes… I’ll ask XO but… eah
-
This post is deleted! -
I need help with a scrolling background… XO is not much help.
-
@shrukin you can just make a big costume for the entire scene, and move it to make the scroll, for infinite scroll just set the position to the start whenever it loops, big costumes can move off the viewport and won’t get stuck on it, you can do infinite scroll without the same exact patterns but that’s a bit harder, for looping infinite scroll you can just do this (for right to left, scroll speed should be negative):
Repeat until (stop scrolling = 1) {
change x by (scroll speed)
//adjust the number to wherever there’s a seamless loop in the costume
if (x position < -1000) {
set x to (0)
}
}Something like what’s above would work with adjustment, you just need one costume for the entire background
-
@tyller_ I’m sorry but i’m only 10! My brain is spinning off its hinges!