Jump to content


jerryd

Member Since 25 Jul 2009
Offline Last Active Feb 16 2013 05:49 AM

Posts I've Made

In Topic: Problem starting Game Maker 8.1

02 July 2012 - 03:39 AM

PrinceOthman

Thanks for the reply.
How does this file go missing?

jerryd

In Topic: Code problems

30 June 2012 - 04:54 AM

Katipo,
Thanks that worked.
How about setting tiles to different levels?

jerryd

In Topic: Code problems

30 June 2012 - 03:36 AM

dannyjen,
I get your point about using the actual room name but when I changed
the code it didn't fix the problem of returning to room0.

jerryd

In Topic: Beginner questions

22 June 2012 - 01:32 AM

Katuko and Manuel777,

Ok I get your responses.  How do I link together or repeat
backgrounds?

Thanks,
jerryd

In Topic: Click/Shoot once

06 August 2010 - 03:35 AM

Rakaro,

In the Create Event the Action should be:
Set the image_speed to 0

In the press <space> Event the Action should be:
Set image_speed to 0.3

In the Step Event the Action should execute the
following code:

if (floor(image_index >= image_number-1))
{
image_index = 0
image_speed = 0
}

I know you want a drag and drop method to do this
but I only know how to do this with code.

Hope this helps,
jerryd