Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I'm looking for ideas for somethin to do...

A topic by Cinos created Oct 09, 2020 Views: 315 Replies: 9
Viewing posts 1 to 6

Any suggestions as long as it's clean and family friendly?

(1 edit) (+2)

(Edit: I originally suggested a free browser game here, but since that’s not what Cinos was requesting at all, I removed the name and link to avoid making this post look like one of those spam advertisements.)

that's already a game, I mean ideas for me to make a game...

(+1)

I see. Unfortunately for both of us, I had no way of knowing that. Your thread’s title is “I’m looking for ideas for somethin to do…”, it was originally posted in General Discussion, and you did not specify it in your post itself either.

"Somethin to do" make games this site is all about that it's very clear

(+2)

I’m sure you’re right. Sorry for not assuming that in the first place.

Moderator moved this topic to Get Feedback
(+2)

You should visit some game jams, there is plenty on the site with specifics rules/concept/ideas
There is a chance that you find something  that interest you there :)

I tried Untitled Game Jam #33 and only managed to do this:   https://blue-cat-games.itch.io/untitled-game-jam-33-untitled-project

but it doesn't work propperly cause the screen wrap sometimes fails and the player never comes back on screen I couldn't figure it out, but a Jam won't give me ideas, I'd have to have an idea or it would be useless to join one

(2 edits) (+2)

hmm ur using gamemaker 1.4, havent used that in a while. Are you using drag and drop for the screen wrapping? I suggest using code instead. here try this:

//not sure how ur doing movement, but this should work regardless. Just remove the "x+=move_speed;" if ever ur using a different method for moving. the important part is the Wrap()

Step Event:

x+=move_speed;

x=Wrap(x,0,room_width);

Script:

function Wrap(_value, _min, _max){
var _range=_max-_min;
while(_value>=_max) _value-=_range;
while(_value<_min) _value+=_range;
return _value;
}

to the Moderator move this back where it was please that's where it belongs, this isn't feedback it's game ideas so be kind and put it back please and thank you