Megaman Zero Engine created by Anyar515
Category: Platform
1 of 1
Added: 12 June 2009
Created by: Anyar515
Version: 1
(Incomplete)
Game description: Not Working At The moment i cant seem to get the sprites right
Reviews
-
Overall Score
-
Graphics
-
Sound
-
Gameplay
-
Story
-
Interface
This Game Has No Reviews.
More Games By This Creator
Page 1/5
Comments
mr_coop said 165 days ago
Use this code insted:
(obj_character) Step/ script:
if place_free(x,y+1)
{gravity=0.4}
else {gravity=0}
gravity_direction = 270
if vspeed > 10 {vspeed = 10}
if keyboard_check (vk_right)&&place_free(x+4,y){x+=4}
if keyboard_check (vk_left)&&place_free(x-4,y){x-=4}
if keyboard_check_pressed(vk_up)&&!place_free(x,y+1){vspeed=-7}
(obj_character) Collision with obj_block/ script:
if vspeed >0 && !place_free (x,y+vspeed) {move_contact(270)} vspeed=0
Just copy and paste














mr_coop said 165 days ago
Report to Staff
And change bounding box on sprite spr_right and spr_left! Than it will work perfecly =)