View Full Version : somthing i made
Nintendofanthr33
17th October 2008, 04:49 AM
well, i made a little flash thing for you to play with, it isnt too good but might be a scrolling shooter
http://www.mediafire.com/?sharekey=014153436a0de413ab1eab3e9fa335cad1bcfa3c 404e02cd
Nintendofanthr33
17th October 2008, 05:00 AM
i still need to add:
health
music
enemies
attacks
more controls
nickyivyca
17th October 2008, 05:04 AM
How does it open?
Ninja Mario
18th October 2008, 08:38 PM
i still need to add:
health
music
enemies
attacks
more controls
I'm making a scroll shooter and I have the illusion of it moving,the room, enemies, lives, attacks, and all the controls I need. Oh yeah also boundries. All I need to do is finish up the timelines then I'll be done.
Nintendofanthr33
18th October 2008, 09:15 PM
i still need to add:
health
music
enemies
attacks
more controls
I'm making a scroll shooter and I have the illusion of it moving,the room, enemies, lives, attacks, and all the controls I need. Oh yeah also boundries. All I need to do is finish up the timelines then I'll be done.
your using a Drag-and-Drop tool, i need to code all of these, link them, and try not to make glitchs.
cheat-master30
18th October 2008, 09:52 PM
Flash has no drag and drop tools? I never knew that. But hey, can I host the finished game on DS Ultimate?
Ninja Mario
18th October 2008, 09:57 PM
i still need to add:
health
music
enemies
attacks
more controls
I'm making a scroll shooter and I have the illusion of it moving,the room, enemies, lives, attacks, and all the controls I need. Oh yeah also boundries. All I need to do is finish up the timelines then I'll be done.
your using a Drag-and-Drop tool, i need to code all of these, link them, and try not to make glitchs.
I could code it if I wanted too. I don't see the point in doing it if gamemaker lets you do what I want to do with just drag and drop and stuff. Well for timelines I just place it with X and Y not drag and drop but very similar. Pretty easy.
Nintendofanthr33
18th October 2008, 11:06 PM
Flash has no drag and drop tools? I never knew that. But hey, can I host the finished game on DS Ultimate?
yes, well inorder to like move objects (Like the link) you need to code it, its not like an action step in Game maker (actions> hold key> right> move right)
Flash does have a Drag and drop, its just you need to code most parts of the game, you'll need to Link items (not drag and drop)
Nintendofanthr33
18th October 2008, 11:08 PM
http://en.wikipedia.org/wiki/Adobe_Flash
here are a few things about it,
Nintendofanthr33
18th October 2008, 11:24 PM
onClipEvent(load){
speed = 10;
}
onClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
this._x += speed;
}else if(Key.isDown(Key.LEFT)){
this._x -= speed;
}
if(Key.isDown(Key.UP)){
this._y -= speed;
}
if(Key.isDown(Key.DOWN)){
this._y += speed;
}
}
thats the Movement code,
nClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
xb += speed;
}else if(Key.isDown(Key.LEFT)){
xb -= speed;
}
if(Key.isDown(Key.DOWN)){
yb += speed;
}else if(Key.isDown(Key.UP)){
yb -= speed;
}
this._x = _x + (xb - _x) / speed;
this._y = _y + (yb - _y) / speed;
}
for a realistic movmentt.
Which one should i use??
im still figuring out linkage
Ninja Mario
19th October 2008, 01:54 AM
onClipEvent(load){
speed = 10;
}
onClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
this._x += speed;
}else if(Key.isDown(Key.LEFT)){
this._x -= speed;
}
if(Key.isDown(Key.UP)){
this._y -= speed;
}
if(Key.isDown(Key.DOWN)){
this._y += speed;
}
}
thats the Movement code,
nClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
xb += speed;
}else if(Key.isDown(Key.LEFT)){
xb -= speed;
}
if(Key.isDown(Key.DOWN)){
yb += speed;
}else if(Key.isDown(Key.UP)){
yb -= speed;
}
this._x = _x + (xb - _x) / speed;
this._y = _y + (yb - _y) / speed;
}
for a realistic movmentt.
Which one should i use??
im still figuring out linkage
I'm glad I can just use events on gamemaker for that stuff. Once I want to do a lot of other stuff I'll start to do coding. I can see that the coding is like in game maker. Once I finish this scroll shooter I'll start coding parts of my game.
Nintendofanthr33
19th October 2008, 02:23 AM
when im done, ill make a tutorial (Video) on how to make
Ninja Mario
19th October 2008, 03:14 AM
when im done, ill make a tutorial (Video) on how to make
That's great! I was looking at a tutorial on coding in gamemaker help. There was a lot of stuff to learn there. Well I mean not to learn I mean like memorize the coding stuff. I'm going to defineantly look at your vid when you have it.
Nintendofanthr33
19th October 2008, 03:17 AM
www.tutorialized.com
is the BEST place for tutorials
Ninja Mario
19th October 2008, 03:38 AM
www.tutorialized.com
is the BEST place for tutorials
Ok I'll check it out. :D
Nintendofanthr33
19th October 2008, 03:41 AM
it doesnt have game maker, since its too basic.
cheat-master30
19th October 2008, 01:45 PM
Oh, and to the point, can the finished game be used on DS Ultimate?
Nintendofanthr33
19th October 2008, 03:54 PM
yes, ye it can
cheat-master30
19th October 2008, 04:59 PM
Thank you, that will be helpful.
ultramario2.0
19th October 2008, 09:19 PM
i still need to add:
health
music
enemies
attacks
more controls
I'm making a scroll shooter and I have the illusion of it moving,the room, enemies, lives, attacks, and all the controls I need. Oh yeah also boundries. All I need to do is finish up the timelines then I'll be done.
your using a Drag-and-Drop tool, i need to code all of these, link them, and try not to make glitchs.
I could code it if I wanted too. I don't see the point in doing it if gamemaker lets you do what I want to do with just drag and drop and stuff. Well for timelines I just place it with X and Y not drag and drop but very similar. Pretty easy.
Are you using Lite, or did you buy Pro? I'm messing around with Lite, but I might get Pro for Christmas.
Nintendofanthr33
19th October 2008, 09:35 PM
im using Macromedia Flash (Adobe)
Ninja is using Lite
Nintendofanthr33
25th October 2008, 03:37 AM
DAGNIT!!!
i cant get linking to work......
vBulletin® , Copyright ©2000-2010, Jelsoft Enterprises Ltd.