00:00
00:00
Newgrounds Background Image Theme

Endrachon just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Idea/Help 2007-07-14 12:40:03


Hey everyone im not new to flash, ive always made movies you see and ive never used action script and im thinking of making a windows parody as just a test not a portal submit but then if i think its good enough i wanna start this game called "Robot Arena" of destruction were you can build bots and then use simple keys to move and use its weapon but first i just need to know how to make a simple click n move flash ...

Suggestions on game please
Help in action script please


BBS Signature

Response to Idea/Help 2007-07-14 12:56:51


Sorry for repost i forgot to say i know how to do basic stuff, make a figure move and stuff like a ball or a custom cursor just need to know how to make like buttons to go to a diff frame and how to make like the ball aka robot for instance would get stoped at a wall or somthing.


BBS Signature

Response to Idea/Help 2007-07-14 13:56:59


I uploaded my platforming action script skills and my overhead action script skills

NOTE: these drawings are not my best art just simple tests i did to see if i still got it for actionscripting basics and also this is Also the only things i know in action script so help please!!
http://media.putfile.com/Test-of-overhead-rob ot
http://media.putfile.com/My-First-Platformer


BBS Signature

Response to Idea/Help 2007-07-14 15:15:34


bump...


BBS Signature

Response to Idea/Help 2007-07-14 15:18:56


Holy crap! The rare-unholy quadrople post!!!

Anywayy, buttons are easy. In the button put:

on(release){
gotoAndPlay(2); /////// or whatever you want it do
}

Response to Idea/Help 2007-07-14 15:30:10


you should try this tutorial... it explain a lot
http://www.newgrounds.com/portal/view/146524

or you can try any other http://www.newgrounds.com/collection/flashtut orials.html

i wish you luck with that


~Member of the EGB since 10/04/07 ~Member of the NGDD since 10/28/07

~thanx a million times for the sig CagedSilhouette

BBS Signature

Response to Idea/Help 2007-07-14 17:17:58


k i got platformers down and stuff how would i make it so if i click somthing it would go to a diff frame were i can click diff stuff again


BBS Signature

Response to Idea/Help 2007-07-15 10:43:59


bump


BBS Signature

Response to Idea/Help 2007-07-15 13:12:30


bump


BBS Signature

Response to Idea/Help 2007-07-15 13:39:26


K.. well tell me if this is good for a second try at a simple platformer
http://media.putfile.com/My-second-platformer

now 3 things how would i make it so when my character aka the ball goes on the light blue block aka ice he would slide.

How would i make it so when he touchs flag it goes to like frame 2 aka level 2.

And how would i make it so if i click a certin symbol it would bring me to a differnt frame?


BBS Signature

Response to Idea/Help 2007-07-15 14:16:14


At 7/15/07 01:39 PM, TormentedAngel23 wrote: K.. well tell me if this is good for a second try at a simple platformer
http://media.putfile.com/My-second-platformer

now 3 things how would i make it so when my character aka the ball goes on the light blue block aka ice he would slide.

How would i make it so when he touchs flag it goes to like frame 2 aka level 2.

And how would i make it so if i click a certin symbol it would bring me to a differnt frame?

The guy above already said the how to make a button,you should also stop copying and pasting code without understanding it :(.if you start from scratch and read tutorials throughly then you wouldn't need help!


GOGOGO

madgodzilla@hotmail.co.uk Feel free to add me.

Response to Idea/Help 2007-07-15 14:30:26


i did im not copying and pasteing im just looking at tutorials... and how would i do ice and the level skip.


BBS Signature

Response to Idea/Help 2007-07-15 15:21:27


BUMP.


BBS Signature

Response to Idea/Help 2007-07-15 15:24:40


Well first of all your graphics are horrible.
Secondly, your games are so buggy that I hate actually even testing them for you.


BBS Signature

Response to Idea/Help 2007-07-15 15:41:46


wow thanks they were tests. those 2 questions can anyone answear and button thing dosnt work.


BBS Signature

Response to Idea/Help 2007-07-15 16:18:00


bump


BBS Signature

Response to Idea/Help 2007-07-15 18:30:54


first off... thats alot of bumbs...

anyways... remeber to put the button code on a button type item that code doesnt work in the frame or an mc/graphic

as for sliding you want a variable called friction... and implement it like so...

//put me in the frame
friction = 0
dir = 0
onEnterFrame = function(){
if(Key.isDown(Key.RIGHT)){
dir = 1
}else if (Key.isDown(key.LEFT)){
dir = 2
}
if(/* character is on platform */){
friction = 1
}else{
firction = 0
}
if(dir == 1){
char._x += friction
}else if(dir == 2){
char._x -= friction
}
}
//keep in mind this a very simple method and thus you will want to adapt it


My Coding Portfolio (updated frequently)

If you stay in bed for long enough it will be socially acceptable to go to bed again

BBS Signature

Response to Idea/Help 2007-07-15 18:34:38


ok so i choose my light blue retangles and put that code in by it self. i get a error and my guy cant go on that spot anymore.


BBS Signature

Response to Idea/Help 2007-07-15 19:06:10


bump.


BBS Signature

Response to Idea/Help 2007-07-15 19:12:38


STOP BUMPING


Best band ever, click it.

BBS Signature

Response to Idea/Help 2007-07-15 19:19:55


Well how do i make my character slide on a certin movie clip?


BBS Signature

Response to Idea/Help 2007-07-15 20:38:57


I just gave you the code to do it! if you give me the.fla i could put it in myself!


My Coding Portfolio (updated frequently)

If you stay in bed for long enough it will be socially acceptable to go to bed again

BBS Signature