Jump to content


blahing-necro

Member Since 22 Dec 2004
Offline Last Active Nov 01 2011 02:41 AM

Posts I've Made

In Topic: Sonic Adventure 3

26 October 2011 - 08:34 PM

Wow, looks nice!  The slope logic is really well done.

In Topic: Super Mario Bros: Mythical Mushrooms

26 October 2011 - 08:09 AM

Wow, nice job!  I couldn't figure out how to pick up items that come out of the blocks after you collide into them.  What set of keys do you need to press?

In Topic: MineClone

26 October 2011 - 07:39 AM

Wow, this is really well done. I was really surprised whenever I opened your application. It's also very smooth, it sits at the max ~ 30 fps the entire time.

Nice job!

In Topic: makifly (platform)

18 December 2010 - 04:17 AM

Well, I didn't play the game but I watched the video. All of it. Easily the strangest experience I ever had on the GMC. o.0

I'm checking into rehab.


Rehabilitation would be useless for cannabis, as it's not addictive. When users are deprived of the drug, they will not suffer from withdrawal.

In Topic: Character movement

17 October 2010 - 06:40 AM

Each time you press the key?  This would work:

Create Event
var canMove;

canMove = true;

Step Event
if (keyboard_check(vk_right))
{
    if (canMove == true)
    {
        self.x += 1;
        canMove = false;
    }
}
else
{
    canMove = true;
}