Page 11 of 11

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Feb 01, 2010 2:33 pm
by pbcheong
can i ask u something extremly important??????????????????????????????
im stuck at this step !!!!!!!!!!
i cant find the "Flash File (Actionscript 2.0)" in my adobe version i also cant find publish settings in my version
pls tell me wad version you're using..



3 - Download Adobe Flash CS4 if you haven't already.
4 - Install Adobe Flash.
5 - Open Adobe Flash.
6 - Click "Flash File (Actionscript 2.0)"
Image
7 - Click File->Import->Import to Library
Image\


can montycarlo or anyone tell me wad to do...

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Sun Mar 28, 2010 2:43 pm
by Lionlev
How about levels and exp and hp and stuff? (item inv......)

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Apr 12, 2010 9:47 pm
by mechasasuke
Im stuck On Day 6 Every time I try to attack I cant jump anymore but when i hit my down arrow it completes My previous attack and it lets me jump again.
http://www.mediafire.com/?fz0lwzjqomn And sorry for the bump.

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Sun May 09, 2010 8:37 am
by Toshioto
Thing is i cant even find CS4 anymore, when i go to the download, its all this CS5 Bullsh*t (hothead) can you send me your CS4 file from Msn on something??

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Jun 07, 2010 5:23 am
by ashuza
I can't attack evar! (MS2) Help or I'll... I'll... (MS4)
And since I put in attacking I can't jump.
EDIT: fixed it. But my monster walks off the edge. I can too...

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Tue Jul 06, 2010 7:53 pm
by Korutae
Can someone help? my bannedstory is v2 and I cant get past part 1 of step 1 cuz i cant find the file button (eek)

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Sun Oct 31, 2010 3:55 am
by hussah905
HELP! I am stuck on the attacking part! I can make the character attack when it is jumping (in the air) but when i press attack button on ground, it doesn't attack and it also makes the character unable to jump (it can move though) (F4) (F4) (F4)

please help!!!

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon May 09, 2011 12:32 pm
by jikongs
hussah905 wrote:HELP! I am stuck on the attacking part! I can make the character attack when it is jumping (in the air) but when i press attack button on ground, it doesn't attack and it also makes the character unable to jump (it can move though) (F4) (F4) (F4)

please help!!!

make your last code in your player action script like this
}else if(jumping == false && !doingAction){
gotoAndStop(1);
checkGround();
}
if(Key.isDown(Key.UP) && !jumping && touchedGround && !doingAction){
yVel = -jumpPower;
jumping = true
_y -= jumpPower/2;
gotoAndStop(3);
}
}

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Wed Jun 15, 2011 3:03 pm
by kridons
Didn't work for me i dont understand the colour part and my character wont stand still

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Sat Jul 23, 2011 4:21 pm
by birdman
Toshioto wrote:Thing is i cant even find CS4 anymore, when i go to the download, its all this CS5 Bullsh*t (hothead) can you send me your CS4 file from Msn on something??



and we cant use cs5 because you only get it for 30 days (not long enough)

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Sat Jul 23, 2011 4:22 pm
by birdman
Toshioto wrote:Thing is i cant even find CS4 anymore, when i go to the download, its all this CS5 Bullsh*t (hothead) can you send me your CS4 file from Msn on something??



and we cant use cs5 because you only get it for 30 days (not long enough)

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Sun Jul 31, 2011 6:16 pm
by chaosoul
I'm making a flash game now and how do you get the damaging number sprites. Like oj numbers for you hurting a monster and purple for a monster hurting you?

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Aug 15, 2011 7:36 pm
by birdman
Montycarlo wrote:Day 2 - Importing and movement

1 - If you completed Day1, you should end up with something like this:
Image
2 - Look in the 'img' folder. If you see numerous pictures of different movements of the character you made then it worked.
3 - Download Adobe Flash CS4 if you haven't already.
4 - Install Adobe Flash.
5 - Open Adobe Flash.
6 - Click "Flash File (Actionscript 2.0)"
Image
7 - Click File->Import->Import to Library
Image
8 - Browse to the saved files in 'Day 1'
9 - Open the 'img' folder
10 - Select all image files, then press "Open"
11 - When it's finished loading, click "Library" on the top, far right corner. You should end up with something like this:
Image
12 - Find "stand1_0_4.png" in the library. Click and drag it to the left, where the white screen is.
Image
13 - The image should have appeared on the 'stage'.
14 - Right click the image. Then press "Convert to Symbol"
Image
15 - In the "Name" field, type in "character" (Without the quotes), then make sure the "Type" field is set to 'MovieClip'. Thirdly, click the bottom middle square next to "Registration"
Image
16 - Click Ok.
17 - If it isn't already, select the image, which is now a 'MovieClip'.
18 - Press F9.
19 - Copy and paste this small code into the newly appeared box:

Code: Select all

onClipEvent(load){
   speed = 3;
}
onClipEvent(enterFrame){
   if(Key.isDown(Key.LEFT)){
      _x -= speed;
   }else if(Key.isDown(Key.RIGHT)){
      _x += speed;
   }
}
20 - Save the file somewhere and press Ctrl + Enter! Use the left and right keys to move the character around.
You should end up with something like this:


i cannot find cs4 anywhere only cs5 and i can only get 30 day of that :(
btw can any one help me with making a hit piont system for it

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Aug 15, 2011 7:41 pm
by birdman
lolificated wrote:
Gatorade wrote:is there a way where you can get a free adobe flash? (F3)

google???


i searched the only ways to get free now are ileagal none the less its not even on the offficail site anymore (F4)

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Nov 14, 2011 4:20 am
by alyssaa
Hi Monty, can you upload the .fla file for the tutorial that you did? I want to see how you fix the shaking ground at day 5. I'm programming in AS3 so don't worry I will convert the codes myself. :)

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Nov 14, 2011 4:44 am
by GLacko
alyssaa wrote:Hi Monty, can you upload the .fla file for the tutorial that you did? I want to see how you fix the shaking ground at day 5. I'm programming in AS3 so don't worry I will convert the codes myself. :)

Monty will not answer anymore, he's been gone for I don't know how long.

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Mon Nov 14, 2011 5:08 am
by alyssaa
GLacko wrote:
alyssaa wrote:Hi Monty, can you upload the .fla file for the tutorial that you did? I want to see how you fix the shaking ground at day 5. I'm programming in AS3 so don't worry I will convert the codes myself. :)

Monty will not answer anymore, he's been gone for I don't know how long.


Aww, (F4) by any chance do you have the .fla files from this tutorial or so?

Re: [Tutorial] How to create a basic maplestory flash game

Posted: Tue Nov 22, 2011 3:55 pm
by Gillian
Tutorial locked. Monty has been inactive for a long time and wont comment here anymore.