want to help breath new life into a long dead game?
i bring to you FAXANADU!
a classic NES game tragically cut down by more modern gaming
lets rebuild it
we have the technology
some things on the game can be found HERE
some more stuff can be found HERE
SPRITERS GREATLY NEEDED
and mayhaps i could aquire a programmer to assist me in that department?
anywho
i was talking to my brother about people remaking old game (like Metroid 2)
he brought up Faxanadu
and how we used to play it constantly
we loved that game
still do
and thats why i wish to bring it back
so if you want to help
read up on the game
play it a bit if you can
and jump on in!
i’ve just started on the programming
so join on in whilst the water is shallow
anyone care to make him better looking and twice as big ?
It is indeed an action RPG. Apparently (I haven’t played it) it’s a great game with good graphics (for its time). I wouldn’t mind helping for sprites if you have a solid game engine. You saved your guy as a .JPG. That’s not very clever.
ok, so i have a health bar and an exp counter
now i need to put a magic meter and a gold counter
later on i have to add a timer
the pause menu looks like the biggest challenge ^^;
edit**
ok, so i switched the jump over to another key
and the new up function…
not quite…
well… functioning, at all
Let me guess. You can climb up, but you can go down on ladders?
I?d try it this way:
if keyboard_check_pressed(vk_up) and position_meeting (x,y,obj_ladder){climb=true;gravity=0}
else {climb=false;gravity=0.2} //reset the gravity to whatever it is
if keyboard_check_direct(vk_up) and climb {vspeed=-4;<add other stuff here, like animation>}
if keyboard_check_direct(vk_down) and climb {vspeed=4;<etc…>}
The whole code was inside the first condition, so you had to press up to execute the rest.
Also, i?d replace keyboard_check_pressed with keyboard_check , so you can hold a ladder if you were pressing up from before, and not necesarily start pressing to grab it.
Tim, I think that would cause a syntax error, unless it was altered by something else.
That code is mighty confusing, consider formatting it out and looking at it again.