Sorry: You Must Be Logged In To Perform That Action.

Megaman Zero Engine created by Anyar515

Category: Platform

  • Add As Favourite
  • Report This Game
  • Send to a friend
  • Rate this game
    • Currently 3.0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Anyar515

    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

    • Submit Game to Digg
    • Submit this game to Delicious
    • Submit to Feedmelinks
    • Submit Game to Reddit
    • Submit Game to Blinklist
    • Submit Game to Facebook
    • what are these icons?

    Reviews

    • Overall Score rating rating rating rating rating
    • Graphics rating rating rating rating rating
    • Sound rating rating rating rating rating
    • Gameplay rating rating rating rating rating
    • Story rating rating rating rating rating
    • Interface rating rating rating rating rating

    This Game Has No Reviews.

    More Games By This Creator

    Page 1/5

    • Previous
    • Next

    Comments

    mr_coop

    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 =)

    mr_coop

    mr_coop said 165 days ago

    Report to Staff

    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

    Fenn

    Fenn said 165 days ago

    Report to Staff

    Do you know about what the problem is?

    Disabled