Be a Supporter!
Response to: Favorite Internet Browser Posted January 3rd, 2011 in General

Internet Explorer.

Today, IE8 is the safest and fastest browser available. Anyone who doesn't agree with me simply doesn't know what they are talking about. I know what each browser is capable of, I had to work with them. IE is the best browser out there, period.

Oh, by the way, IE9 beta was showcased at MIX recently. There were a lot of examples of its features, for instance, playing 2 HD videos using HTML5 at less than 50% of CPU overload, while Chrome crashed trying to play just one video. The new features include stuff like GPU acceleration, CSS3, new Javascript engine, etc.

There you go, Chrome/Firefox/Opera/whatever fanboys.

Favorite Internet Browser

Response to: what lvl would u be if... Posted January 3rd, 2011 in General

"If you deposited every day, you would have 14260 EXP and you would be Level 36."

'Vault' survival shelters are real Posted January 2nd, 2011 in General

And you can actually buy a space in such a shelter for $25,000.

The company behind all this is called Vivos and they have already made the first shelter. Each shelter is constructed deep underground and has all the stuff needed for survival - food, medical supplies, etc.

So if a nuclear war starts, or a huge meteor falls, or whatever the fuck people think might happen, you can hide in that bunker and survive for a year.

Personally, I think it's a big load of bullshit to profit from people's fears.

Response to: Youtube celebrities Posted December 31st, 2010 in General

Hey, I like Charlie the Unicorn. The series debuted on Newgrounds too, you know.

Response to: I'm so pissed off!!! Posted December 27th, 2010 in General

This guy means it, you better watch out

Response to: Atheism. What's the fucking point? Posted December 27th, 2010 in General

At 12/27/10 05:34 AM, Medeyer wrote: Athiesism is no belief in god. It's not a religion, just a term to idetify those who don't believe in god. Agnostics believe in a god or higher power, but not a follower of any particular religion.

I believe you're wrong but I'm not sure myself:

Deist- One who believes that there is a God(s) but that God(s) do not intervene in the universe. ie God(s) set the rules and then retired.

Theist - One who believes that there is a God(s) and that God(s) do intevene in the universe.

Agnostic - One who thinks that the existence of God(s) cannot be proved or disproved.

Atheist - One who does not believe in God(s).

If the definitions are correct, then I guess I'm an agnostic deist.

Response to: Atheism. What's the fucking point? Posted December 27th, 2010 in General

OP is a fucking idiot!

If you believe in one religion, you automatically don't believe in anything else. You can't be a christian and a muslin at the same time.

Therefore, saying that your beliefs are right, but my neighbor's beliefs are different but also right is stupid for obvious reasons.

Atheism. What's the fucking point?

Response to: Multiplayer flash games? Posted December 27th, 2010 in Game Development

At 12/26/10 09:43 PM, Spysociety wrote: Yeah you need more. Flash will be used for the internal programming and graphic settings, you will have to use XML and PHP vars for the data receive (probally having MySQL too) and not forgetting to set up an online server.

No, databases in multiplayer games are used to store stuff like character information in MMORPGs, player statistics, etc.

Sockets are used for the gameplay itself - you need a socket server for that.

Response to: Round real numbers? Posted December 25th, 2010 in Game Development

Math.round(yourNum*100)/100

Response to: Triple Button Roulette [as3] Posted December 24th, 2010 in Game Development

Have your answers stored in an array and then randomly distributed to the buttons, if the person answered wrong - repeat, if he answered correctly - advance, set new question, distribute new answers.

Response to: Help me(unanswered) Posted December 21st, 2010 in Game Development

Here's how you do it:

1) Pull down your pants
2) Punch yourself in the fucking balls
3) Repeat until the background stops moving

If after multiple attempts that fails, you could actually try listening to people giving you advice, or shut the fuck up, bitch, and do it yourself.

Response to: AS3: preloader trouble Posted December 4th, 2010 in Game Development

You gotta import flash.events.Event;

Response to: Should I buy a Mac? Posted November 28th, 2010 in General

Macs are horrible, don't get it, you're just wasting your money.

Response to: youtube comments are for jerks Posted November 20th, 2010 in General

But you forgot about the Newgrounds reviews... Or any review/comment section in general. Idiots can show up everywhere, not just Youtube.

Like this one... This guy's got it all

youtube comments are for jerks

Response to: youtube comments are for jerks Posted November 20th, 2010 in General

I should probably stop now

youtube comments are for jerks

Response to: youtube comments are for jerks Posted November 20th, 2010 in General

Apple enthuasist gets serious

youtube comments are for jerks

Response to: youtube comments are for jerks Posted November 20th, 2010 in General

80% of Youtube commenters are pretty dumb, but their lack of intelligence just makes it more amusing!

Especially when people rage

youtube comments are for jerks

Response to: Opinions and Ideas Needed Posted November 19th, 2010 in Game Development

Anytime, mate!

Response to: money Posted November 19th, 2010 in Game Development

It costs a lot of effort to find out

Response to: Opinions and Ideas Needed Posted November 19th, 2010 in Game Development

Farmers, KFC workers

Response to: Save without broswer Posted November 15th, 2010 in Game Development

At 11/15/10 12:27 PM, milchreis wrote: FileReference.save()

Yeah, that's a way of storing data in files and saving them on your computer. However, they can be easily edited that way.

Response to: [AS3] Class Constructor? Posted November 15th, 2010 in Game Development

Here's a tut

The code shown there is not a class script, but you can easily turn it into one.

Response to: AS3 Taking the mem garbage out Posted November 13th, 2010 in Game Development

Thanks.

AS3 Taking the mem garbage out Posted November 13th, 2010 in Game Development

How do I get rid of the memory garbage using AS3?
I'm using several loops and event listeners, I can see that my memory counter goes up by small bits constantly. Are there any tips of eliminating the unneeded stuff?

Response to: {Submitting Flash} Max. dimension? Posted November 13th, 2010 in Game Development

Here are the recommended dimensions for a web flash game for Newgrounds (16:9 ratio)

%u2022 600 x 338
%u2022 640 x 360
%u2022 720 x 405
%u2022 800 x 450
%u2022 848 x 480

I wish there would be more full-screen games. I hate playing 550x400 games on my widescreen monitor.

Response to: AS3 not removing everything... Posted November 13th, 2010 in Game Development

Try doing something like this:

for (var i:int=0; i<myArray.length; i++){
removeChild(myArray[myArray.length]);
myArray.pop();
}

Aka you remove the last element using removeChild and then remove it from the array using pop(). You do this action i amount of times, where i is the length of your array.

I haven't tried this, but I think it should work!

Response to: AS3 not removing everything... Posted November 10th, 2010 in Game Development

Hmm, maybe you could try going from the last element to the first...

Response to: What flash needs now... Posted November 10th, 2010 in Game Development

Umm, it is possible to do that

Response to: Need coder for steampunk shmup Posted November 8th, 2010 in Game Development

I might be interested in this. I've been doing a lot of AS3 coding, messing around here and there, made a few engines, and recently I've done a shoot em up base engine too.

What is the time limit? I am kind of busy with school and some other projects, but I think I'll be able to do this. I've never done collabs before, by the way.

Looking forward to hearing from you! :)

Response to: AS: Sound Stream Posted November 8th, 2010 in Game Development

Okay, this would be helpful for a beginner, but... why AS2?