Log in
Search
GameML File Sharing
USERNAME: gamemladmin@gmail.com PASSWORD: gamemlsite Upload Here: http://gameml.iowoi.org/GameML-File-Sharing-h3.htmPlease add only games.Alex Quest (Re-make)
:: Game Making :: WIP (Work in Progress) :: Your WIP
Page 4 of 4 • Share •
Page 4 of 4 •
1, 2, 3, 4
Alex Quest (Re-make)
First topic message reminder :
If arent already familiar with Alex Quest:
AQ1
http://www.yoyogames.com/games/show/15443
AQ2
http://www.yoyogames.com/games/show/49650 (removed from storyline)
What is 2.5d?
It's kinda like this:

I'm going to try to make it a little more- "exciting" than the original.
Also:
+ mp3 remixes of all the original midi's
+ save & loading
+ the game will be more difficult
+ possibly a boss rush
+ more playable characters
+ better graphics (my opinion)
+ a fork in the road
release date is unknown at this point.
If arent already familiar with Alex Quest:
AQ1
http://www.yoyogames.com/games/show/15443
AQ2
http://www.yoyogames.com/games/show/49650 (removed from storyline)
What is 2.5d?
It's kinda like this:

I'm going to try to make it a little more- "exciting" than the original.
Also:
+ mp3 remixes of all the original midi's
+ save & loading
+ the game will be more difficult
+ possibly a boss rush
+ more playable characters
+ better graphics (my opinion)
+ a fork in the road
release date is unknown at this point.


opticalillusions64- Tres GameML Ninja

- Posts: 165
Points: 11101
GameML Reputation: 0
Join date: 2009-06-01
Age: 20
Location: ???

Re: Alex Quest (Re-make)
Done!


_________________
My site is new and good! and it's going to be able to host games and stuff! Check it out! http://cazigeneration.vampire-legend.com/index.htm

The SNIC- Moderator

- Posts: 676
Points: 11287
GameML Reputation: 4
Join date: 2009-07-10
Age: 1002
Location: Enafosase(Eastern North America Facility Of Specially Advanced Student Education) or not

Re: Alex Quest (Re-make)
Sorry, The site I posted it on only runs it once. Any sites that loops the animation?
_________________
My site is new and good! and it's going to be able to host games and stuff! Check it out! http://cazigeneration.vampire-legend.com/index.htm

The SNIC- Moderator

- Posts: 676
Points: 11287
GameML Reputation: 4
Join date: 2009-07-10
Age: 1002
Location: Enafosase(Eastern North America Facility Of Specially Advanced Student Education) or not

Re: Alex Quest (Re-make)
I've decided not to use an animation for it would be too complecated for me >_<

opticalillusions64- Tres GameML Ninja

- Posts: 165
Points: 11101
GameML Reputation: 0
Join date: 2009-06-01
Age: 20
Location: ???

Re: Alex Quest (Re-make)
What? No it's easy! I know how to do it!
this:
left: sprite change
speed = 1
sprite = left_walk
sub image = -1
left release: sprite change
speed = 0
sprite = left_walk
sub image = 0
()
same thing with right sept different sprite
this:
left: sprite change
speed = 1
sprite = left_walk
sub image = -1
left release: sprite change
speed = 0
sprite = left_walk
sub image = 0
()
same thing with right sept different sprite
_________________
My site is new and good! and it's going to be able to host games and stuff! Check it out! http://cazigeneration.vampire-legend.com/index.htm

The SNIC- Moderator

- Posts: 676
Points: 11287
GameML Reputation: 4
Join date: 2009-07-10
Age: 1002
Location: Enafosase(Eastern North America Facility Of Specially Advanced Student Education) or not

Re: Alex Quest (Re-make)
thats what you'd use on a non-platform type game

opticalillusions64- Tres GameML Ninja

- Posts: 165
Points: 11101
GameML Reputation: 0
Join date: 2009-06-01
Age: 20
Location: ???

Re: Alex Quest (Re-make)
Platform games without animation are really dodgy, here is a basic animation script that I used in poorly drawn man.
In step event:
if !(place_meeting(x,y+1,obj_floor))
{
if vspeed <= 0
{
sprite_index = //jump sprite
}
if vspeed >= 0
{
sprite_index = //fall sprite
}
}
if ((place_meeting(x,y+1,obj_floor)) and !(keyboard_check(vk_right)) and !(keyboard_check(vk_left)))
{
sprite_index = //standing sprite
}
if keyboard_check_pressed(vk_right)
{
sprite_index = //running sprite
image_xscale = 1
}
if keyboard_check_pressed(vk_left)
{
sprite_index = //running sprite
image_xscale = -1
}
Make the origin of all player sprites have the x axis in the middle of the sprite. Use a mask.
In step event:
if !(place_meeting(x,y+1,obj_floor))
{
if vspeed <= 0
{
sprite_index = //jump sprite
}
if vspeed >= 0
{
sprite_index = //fall sprite
}
}
if ((place_meeting(x,y+1,obj_floor)) and !(keyboard_check(vk_right)) and !(keyboard_check(vk_left)))
{
sprite_index = //standing sprite
}
if keyboard_check_pressed(vk_right)
{
sprite_index = //running sprite
image_xscale = 1
}
if keyboard_check_pressed(vk_left)
{
sprite_index = //running sprite
image_xscale = -1
}
Make the origin of all player sprites have the x axis in the middle of the sprite. Use a mask.
_________________


CarnivorousA- Moderator

- Posts: 1402
Points: 12822
GameML Reputation: 17
Join date: 2009-06-01
Age: 17
Location: At the bottom of the lake.

Re: Alex Quest (Re-make)
hmmm thanks

opticalillusions64- Tres GameML Ninja

- Posts: 165
Points: 11101
GameML Reputation: 0
Join date: 2009-06-01
Age: 20
Location: ???

Page 4 of 4 •
1, 2, 3, 4
Similar topics» Geraldo Rivera: Alex Hunter on Handwriting Analyses
» Clan Quest Mod Information
» Quest translations to Japanese language
» (PAP) Papulatus Info including pre quest and Hp/mp
» [1.7.3] Make Your Mob Do [something] When It's Day!
» Clan Quest Mod Information
» Quest translations to Japanese language
» (PAP) Papulatus Info including pre quest and Hp/mp
» [1.7.3] Make Your Mob Do [something] When It's Day!
:: Game Making :: WIP (Work in Progress) :: Your WIP
Page 4 of 4
Permissions in this forum:
You cannot reply to topics in this forum
