| |
Super mario: fierce blow, a mario fighting adventure
RandemnoTE |
|
the 8-bit warlord

Group: Members
Posts: 75
Member No.: 6570
Joined: 4-October 09
Status: (0d)
![[--]](style_images/mfgg2_skin/warn_nosuspend.gif)

|
| QUOTE (Datt @ Oct 12 2009, 06:59 PM) | Don't you think you should start with something simpler? I mean, a fighting game can be pretty complex. I should know, I'm actually struggling working on now. Since I started out with simple games first, I'm having hardly any problems with the programming, but if I was new to GM then I don't know what I would do.
Even if you get a expert programming to code the characters for you, you won't be learning anything about Game Maker because chances are the expert will be using advance things that you wouldn't know because you didn't work from the bottom up.
Anyways expert programmers that are willing to help are hard to come by, especially since you don't have a decent engine test.
Of course, if this expert is willing to teach you instead of doing the work then that would be better. |
The expert is a PARENT. and.... so far it isn't helping much at all. right now I'm learning what makes the box guy move properly by reading it's code... and i'm wondering how i can make it more animated when it moves. because mario sliding isn't very good motion. i justy don't know where in the GML help section to start for making basic motor skills in a character. so bassicly: Screw the fighting thing for now! i'm just trying to figure out basic motions.
--------------------
go on. bring a challenge. i'll just snipe it.
|
|
|
Fez |
|

Don't cry
![Happy Heart Badge [*]](https://archive.mfgg.net/html/badges/happyheart.gif) ![Sprite Comp Runner Up Badge (1) [*]](https://archive.mfgg.net/html/badges/scr1.gif) ![Sprite Comp Top 5 Badge (1) [*]](https://archive.mfgg.net/html/badges/sct1.gif) ![Drawing Comp Top 5 Badge (2) [*]](https://archive.mfgg.net/html/badges/dct2.gif) ![Minigame Comp Winner Badge (1) [*]](https://archive.mfgg.net/html/badges/mcg1.gif)

Group: Members
Posts: 1348
Member No.: 5734
Joined: 1-October 08
Status: (0d)
![[--]](style_images/mfgg2_skin/warn_nosuspend.gif)

|
what? I just gave you code, but I'll give you a rundown of how to use the first two (and more important) functions.
So we start by creating a new sprite. in this sprite, we put mario. in the same sprite, we're going to put multiple frames of animation. do this by double clicking on the sprite, edit sprite, then paste all your animations there. next, hit show preview. it'll start at a speed of 30, but that's too fast for most animations. lower the speed until you find one that looks like a natural walking speed.
now in your object, find where it previously said sprite_index=[sprite] and change it to sprite_index=spr_mariowalk (for example, you have to change this depending on what you name the sprite) then hit enter and type image_speed=
how you find the number for the image speed is by dividing the speed at which the walking looked good at by 30 (or whatever your room speed is) So for example, say when you played the sprite at speed 15 it looked good, then do 15/30=0.5
so in the end it would look like
| CODE | sprite_index=spr_mariowalk (the name of the sprite) image_speed=0.5 (or whatever number you found worked) |
I hope that helps. I'll explain image_xscale to you when you have this down.
--------------------
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
Track this topic
Receive email notification when a reply has been made to this topic and you are not active on the board.
Subscribe to this forum
Receive email notification when a new topic is posted in this forum and you are not active on the board.
Download / Print this Topic
Download this topic in different formats or view a printer friendly version.
[ Script Execution time: 0.0466 ] [ 13 queries used ] [ GZIP Enabled ] [ Server Load: 1.28 ]
| |