Be a Supporter!
Response to: The Flash 'Reg' Lounge Posted September 17th, 2009 in Game Development

At 9/16/09 11:16 PM, Coaly wrote:
At 9/16/09 07:40 PM, Treerung wrote: Does anyone here like to code while having a baseball game on in the backgro...
Treerung, I'm happy for you, and ima let you finish, but football is the greatest sport of ALL TIME.

I couldn't agree with you more..its just that I become a littletoo interested when football is on.

Response to: The Flash 'Reg' Lounge Posted September 16th, 2009 in Game Development

Coding and Baseball

Does anyone here like to code while having a baseball game on in the background?
To me it seems like a great idea to keep yourself entertained without distracting you from coding.

Response to: Noobs come here! Posted September 16th, 2009 in Game Development

At 9/16/09 09:13 AM, Jin wrote:
At 9/13/09 01:02 AM, DrClay wrote: that is what I'm saying... is BA shouldn't be that high...
That's what clock day does. Give noobs the ability to create collabs.

I suspect he votes 5 on his submissions everyday as well..cause there crap.

Response to: Fucking Jews... Posted September 15th, 2009 in General

At 9/15/09 07:47 PM, jinxworld70 wrote: You all realize anyone who actually posts in this thread is a nazi, right?

You don't seem to understand what nazi is..

Response to: (lol) last question- wall code Posted September 14th, 2009 in Game Development

onClipEvent(enterFrame)
{
if(_root.movieclip.hitTest(_root.wall)
{
_parent.gotoAndStop(Frame);
}
}
Response to: Any good actionscript books Posted September 14th, 2009 in Game Development

If you don't think your ready for AS3 then don't try to learn it.
Instead learn AS2..the book you already have is perfect.
The reason it was called "outdated" is because AS2 is considered an outdated language now that AS3 is out.

Response to: Any good actionscript books Posted September 14th, 2009 in Game Development

AS3
Actionscript 2

Response to: here is another intresting question Posted September 12th, 2009 in Game Development

I assume asking about a v-cam which you can use as a camera to move around the screen and zoom in and out too during a movie/game.
You can download a v-cam here.

Response to: an artost needed Posted September 11th, 2009 in Game Development

the reason that noone will help you is cause your a complete douche bag..

Response to: Does this girl like me? (revised) Posted September 9th, 2009 in General

Since your on newgrounds..chances are it was probably someone behind you

Response to: Paid work - TD project Posted September 9th, 2009 in Game Development

The guy who made GemCraft, a tower defense game, supposedly got around $14,000 but thats also top-notch quality work.

Response to: NewGrounds game collab Posted September 9th, 2009 in Game Development

If this collab ever pulls through, it should be worth a good laugh or two.

Response to: new grounds. Posted September 9th, 2009 in Game Development

When you vote for atleast 5 movies on any given day you get 10 exp points.
10 is the most exp points you can get in a day no matter how many movies you vote on.
The idea is to vote on a couple of movies everyday as opposed to 100 movies on one day.

Response to: dad game Posted September 8th, 2009 in Game Development

At 9/8/09 12:28 PM, FlashtooREV wrote:
At 9/8/09 12:24 PM, Treerung wrote: Because it only has a score of 4.31..
Submitted: 09/02/2009 | 10:58AM EST

File Info: Game | 14.3 MB | Add Game to Favorites

Genre: Action - Platformer - Other

Current Score: 4.64 / 5.00

12,569 votes | 479,696 views
Daily Feature - 09/03/2009

My bad thought he was talking about a different game.
In this case its probably because the game doesn't have enough votes yet.

Response to: dad game Posted September 8th, 2009 in Game Development

Because it only has a score of 4.31..

Getting a .fla from a .swf Posted September 7th, 2009 in Game Development

Is there anyway to get a .fla file from a .swf thats online?

My computer's harddrive crashed and all my files were deleted, however some of my stuff has been uploaded to newgrounds/spamtheweb and I am trying to retrieve the .fla of this game.

I'm trying to remake the game without having to redo the code.

Any suggestions?
Thanks!

Response to: question about flash Posted September 7th, 2009 in Game Development

No and its against the rules to talk about torrents in the flash forum.

Theres a downloadable trial version of flash at adobe.com that lasts for 30 days and I think there is a student version of flash for less $.

Response to: Who is EyeLovePoozy? Posted August 28th, 2009 in General

Some faggot construction worker.

Response to: First flash animation Posted August 28th, 2009 in Game Development

Not bad for a first animation but you need to raise your FPS alot(to atleast 24)...animation is really choppy right now

Response to: Flash Debate Posted August 28th, 2009 in Game Development

Seems very lame that you spent last night planning an idea for a flash that you have no intention to participate in.


Basically, when the user pushes the spacebar the character jumps

I don't want the user playing to be able to hold down the spacebar to cause the character to continuously jump before ending the first jumping..

Preferably if the user holds the spacebar the character jumps once and then doesn't jump again.

Here is specific code I need this for:

onClipEvent (keyDown) {
        if (Key.isDown(Key.SPACE)) {
            _root.tempplayer.gotoAndPlay(2);
        }
}

Thanks in advance!

Response to: Flash Evolution Posted August 6th, 2009 in Game Development

nope, I guess you are screwed lol

Response to: need help with enemy AI Posted August 2nd, 2009 in Game Development

Try this

onClipEvent(enterframe){
AI = "stand"
this.gotoAndStop(1);
reloadTime = 10;
ammo = 32
 if(ammo < 1 && AI != "reloading"){
 gotoAndStop(2);
AI = "reloading"
 reloading = 0
 }
 if(AI == "reloading" && reloading < reloadTime){
 reloading += 1
 }else{
 gotoAndStop(1);
 AI = "stand"
 }
if(AI == "stand"){
AI = "shoot"
 gotoAndStop(3);
 }
 }
}
onClipEvent(mouseDown){
if(hitTest(_root._xmouse, _root._ymouse, true)){
gotoAndStop(4);
AI = "dead"
}
 }
Response to: Tutorials Posted July 31st, 2009 in Game Development

Here

Response to: Look at this! Posted July 29th, 2009 in Game Development

At 7/29/09 06:53 PM, UknownXL wrote: Im having some trouble with the code in my game used to site lock it. Why is it not working?

Try this:

this_url = _root._url;
//list of allowed urls.
allowed_urls = new Array("uploads.ungrounded.net", "uploads.newgrounds.com");
this_url = this_url.substr(7, this_url.length);
this_url = this_url.substr(0, this_url.indexOf("/"));

var found_good_url = 0;
for(var i=0; i<allowed_urls.length; i++)
{
if(this_url == allowed_urls[i])
{
found_good_url = 1;
break;
}
}
if(found_good_url == 1)
{
gotoAndStop("goodurl");
} else
{
gotoAndStop("badurl");
}
Response to: The Flash 'Reg' Lounge Posted July 27th, 2009 in Game Development

At 7/27/09 10:45 AM, Toast wrote: what happened to the reg lounge?

Yeah it was alot better when it was locked.

Response to: Awsome Idea Posted July 26th, 2009 in Game Development

At 7/26/09 05:36 PM, fib45 wrote:
At 7/26/09 05:24 PM, AnalogStick wrote: Thats an awesome idea. However I don't need you. I'll just take your idea and code it for myself.
WTF

I though all you wanted was the satisfaction..well either way thats what you get for posting your ideas on a public forum.

Response to: Programmer Wanted: Will Pay Posted July 24th, 2009 in Game Development

Actually your examples are good and if you find a decent programmer you should seriously consider looking for a sponsorship.
Also as a programmer, I would never do a job like this for anything under $250..but thats me

Response to: platformer game help Posted July 24th, 2009 in Game Development

At 7/24/09 03:43 PM, wisconsin212 wrote: ok so i want to make a death animation for my character my code for the enemy is

onClipEvent(enterFrame) {
if (_root.hero.hitTest(_root.bat)){
gotoAndStop(14)
}
}
so i want it to play my charecters death before it goes to the retry screen

The problem you have is that this is the code for your enemy not your hero.
Try this code instead(in your movieclip named "hero":
onClipEvent(enterFrame) {
if (this.hitTest(_root.bat))
{
trace("Hittest Working");
this.gotoAndStop(14);
}
}

Response to: Artist looking for Programmer Posted May 9th, 2009 in Game Development

Hey I'm not sure exactly what you're looking for but,
I would be willing to help to do some of the coding for you. You can check out some of stuff I have submitted..my most recent submission would be the closest to what I think you are looking for.