new game coming soon
new game coming soon
i made 8 thing and this is how you play
you all know how to move
the berger is points you don't have too get them your score is at the top
5 points each
there are rocks tht you can push
a key that opens doors
there will be a flag thats the exit
you all know how to move
the berger is points you don't have too get them your score is at the top
5 points each
there are rocks tht you can push
a key that opens doors
there will be a flag thats the exit
You do not have the required permissions to view the files attached to this post.
I've noticed the wonderland logo on the top left corner has a different shade of white to the background. This could destroy the universe.
Re: new game coming soon
Sounds like a pretty good game!Zoomy wrote:i made 8 thing and this is how you play
you all know how to move
the berger is points you don't have too get them your score is at the top
5 points each
there are rocks tht you can push
a key that opens doors
there will be a flag thats the exit

Are there any original sprites other than that green thing?
yes There are more sprites made by me they are just niot in the screenshot
Last edited by Zoomy on Sat May 17, 2008 12:19 pm, edited 2 times in total.
I've noticed the wonderland logo on the top left corner has a different shade of white to the background. This could destroy the universe.
How on earth do you make things that you can move in GM?
I just use this code:

Code: Select all
BoxX = PlayerX + Horiz
BoxY = PlayerY + Verti
If Level(BoxX + Horiz, BoxY + Verti) = " " Then
BoxX = BoxX + Horiz
BoxY = BoxY + Verti
PlayerX = PlayerX + Horiz
PlayerY = PlayerY + Verti
End If
Skype wrote:[7:23:42 AM] Darx: Click here to give me an internet!
[7:23:57 AM] 'a'a: *clicks here*
You use Drag & Drop Actions to make a player move with the arrow keys in GM.
I'm gonna use Zoomy's account to post the actions and events (I can't Copy & Paste to another PC)
I'm gonna use Zoomy's account to post the actions and events (I can't Copy & Paste to another PC)

Last edited by dlcs18 on Sun May 18, 2008 8:19 pm, edited 1 time in total.
dlcs18
Here it is:
Code: Select all
Keyboard Event for <Left> Key:
if object is aligned with grid with cells of 32 by 32 pixels
start moving in directions 000100000 with speed set to 4
Keyboard Event for <Up> Key:
if object is aligned with grid with cells of 32 by 32 pixels
start moving in directions 000000010 with speed set to 4
Keyboard Event for <Right> Key:
if object is aligned with grid with cells of 32 by 32 pixels
start moving in directions 000001000 with speed set to 4
Keyboard Event for <Down> Key:
if object is aligned with grid with cells of 32 by 32 pixels
start moving in directions 010000000 with speed set to 4
I've noticed the wonderland logo on the top left corner has a different shade of white to the background. This could destroy the universe.
No, I mean objects that you can push.
Skype wrote:[7:23:42 AM] Darx: Click here to give me an internet!
[7:23:57 AM] 'a'a: *clicks here*
Code: Select all
Collision Event with object Rock:
if relative position (8*other.hspeed,8*other.vspeed) is collision free for Only solid objects
for other object: move relative to position (1*other.hspeed,1*other.vspeed)
else
bounce not precisely against solid objects
I've noticed the wonderland logo on the top left corner has a different shade of white to the background. This could destroy the universe.
I'm confused. 

Skype wrote:[7:23:42 AM] Darx: Click here to give me an internet!
[7:23:57 AM] 'a'a: *clicks here*