Game Maker Thread

Fira

banned
*If 100% safe and rules, staff, both permit*

Talk about, give complaints on, give complaints about, give compliments on, give compliments about, *upload for download Game Maker tutorials, examples, games, other, others of, do team requests on*, ask for help on, ask for advice on, give help on, give advice on, chat about Game Maker and its author(s).

I found this forum out through Google Search Engine.

Here are some things I know.

I have Game Maker 8.0 Lite Edition from YoYoGames.

How to make a Mega Man game with Lite Edition I will do one at a time

I will type what I know of Game Maker next post.
 
Bump once (but I will help out in atleast 3 other topics soon to make it fair).

How to do "exact" spot?

We'll do PACMAN and Cherry.

[ code ] no spaces [ /code ]
Code:
PACMAN
keyboard left x -= 4;
keyboard right x += 4;
keyboard up y -= 4;
keyboard down y += 4;

collision with Cherry
if self.x = other.x+14 and self.y = other.y+32 with(other) instance_destroy();
 
Back
Top