ninjabox (demo 4,5) created by Flamemaster
Category: Adventure
Current rating
Added: 26 December 2009
Created by: Flamemaster
Version: 2
(Incomplete)
Game description: you go around as a box with a headband. please dont critisize me its still a demo and its my first game. the 4.5 means my progress
Reviews
-
Overall Score
-
Graphics
-
Sound
-
Gameplay
-
Story
-
Interface
Potential
Added: 04 October 2010
Created by: Corphish129
Pros: Original graphics and idea.
Cons: No sound, glitches, static sprites, n...
More Games By This Creator
This creator has no other games uploaded.



Corphish129 said about 1 year ago
I know, I know. But you should just know that you can make you own variables by putting what they equal in creation.
Flamemaster said about 1 year ago
dude. im really just a beginner at gm so idk how to code very well
Corphish129 said about 1 year ago
Then just make so when he touches the box
gravdown=false
don't forget to put gravdown=true in the creation!
Corphish129 said about 1 year ago
Whats going on is that as soon as he leaves the ground the normal gravity kicks in. Change it so theres a variable that determines what direction the gravity goes like this:
if gravdown=true
{if place_free(x,y+1)
{gravity=.5
gravity_direction=270}
else
{gravity=0
gravity_direction=direction
}
if vspeed>12 {vspeed=12}}
if gravdown=false
{if place_free(x,y-1)
{gravity=.5
gravity_direction=90}
else
{gravity=0
gravity_direction=direction
}
if vspeed<-12 {vspeed=-12}}