You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'HailFire'

We found 1,255 matches.


<< < > >>

Viewing 1-30 of 1,255 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 92542

1.

Elated

Topic: Quick AS2 problem

Posted: 11/14/08 03:59 PM

Forum: Flash

Thanks, dude, I understand it now, and it's just what I needed.

I shall not fail!


2.

None

Topic: Quick AS2 problem

Posted: 11/14/08 02:59 PM

Forum: Flash

At 11/14/08 02:46 PM, trig1 wrote:
At 11/14/08 02:19 PM, HailFire wrote: It's sort of hard to describe, but it's clear evidence that my "inertia" isn't working right. Basically (in case you didn't already see what I was trying to do there), I want the ship to drift, slow, and stop in the direction it was moving after I release the arrow key(s).
Hmm. Looking at what you've got, I think it would help if you got rid of the whole 'velLeft' etc vars, and replace them with an xVel and yVel. If I were you, make the arrow keys not change the ships position itself, but the vel variables, which themselves move the ship.

Something like this (but should also have a y thing aswell):

var xVel = 0
onEnterFrame = function(){
xVel += (Key.isDown(Key.RIGHT)-(Key.isDown(Key.L EFT)))
_x += xVel
xVel > 10? xVel = 10: 0;
xVel < -10 ? xVel = -10 : 0;
}

Used ternary to speed things up, and a quick binary thing instead of endless if statements. Basically the same things, but sorry if it's confused you.

That the kind of thing you want?

Yes, with two exeptions.

First, it never stops.

Second, I only know very very basic AS2, and I'm making this Flash game for this contest, and by giving me a chunk of complex script to copy/paste, I learn nothing. :P


3.

None

Topic: Quick AS2 problem

Posted: 11/14/08 02:42 PM

Forum: Flash

There's probably a less stupid way to do it (also I don't know how 'else' works), but I'm trying to get the object to drift/slow/stop in the direction it was moving when the arrow keys are released.


4.

None

Topic: Quick AS2 problem

Posted: 11/14/08 02:31 PM

Forum: Flash

At 11/14/08 02:27 PM, the-taken wrote: syntax error: you want brackets "{}" around the statements proceeding your "else"s not parentheses "()"

I had done that to fix a different syntax error, I don't remember what.

However, replacing the parentheses with brackets makes no appreciable difference.


5.

None

Topic: Quick AS2 problem

Posted: 11/14/08 02:19 PM

Forum: Flash

At 11/14/08 02:10 PM, trig1 wrote: You code works fine, it must be a problem importing the class, or something unrelated.

Is that code in an external .as file? Make sure it's in the same directory as the .fla file, and that you imported it correctly.

+ try to use code tags by typing < c o d e > and < / c o d e> (without spaces) before and after the code respectively.

I deleted and remade the symbol, which fixed it.

However, now, when I hold down the arrow key, the object sort of starts jerking forward faster than normal.

It's sort of hard to describe, but it's clear evidence that my "inertia" isn't working right. Basically (in case you didn't already see what I was trying to do there), I want the ship to drift, slow, and stop in the direction it was moving after I release the arrow key(s).


6.

Questioning

Topic: Quick AS2 problem

Posted: 11/14/08 01:57 PM

Forum: Flash

I'd appreciate it if someone could debug the following code; I'm trying to move around a MovieClip (namely, "Ship") with the arrow keys, but when I test the .fla, nothing happens.

Easy stuff, and I've done it before, but the script isn't working and I can't see anything wrong with it.

class Ship extends MovieClip
{
var velocity;
var velRight;
var velLeft;
var velUp;
var velDown;

function onLoad()
{
velocity = 10;
velRight = 0;
velLeft = 0;
velUp = 0;
velDown = 0;
}

function onEnterFrame()
{
if(Key.isDown(Key.RIGHT))
{
_x += velocity;
velLeft = 0;

if(velRight < 10)
{
velRight += 1;
}
else(_x += velRight , velRight -= 1)
}

if(Key.isDown(Key.LEFT))
{
_x -= velocity;
velRight = 0;

if(velLeft < 10)
{
velLeft += 1;
}
else(_x -= velLeft , velLeft -= 1)
}

if(Key.isDown(Key.UP))
{
_y -= velocity;
velDown = 0;

if(velUp < 10)
{
velUp += 1;
}
else(_y -= velUp , velUp -= 1)
}

if(Key.isDown(Key.DOWN))
{
_y += velocity;
velUp = 0;

if(velDown < 10)
{
velDown += 1;
}
else(_y += velDown , velDown -= 1)
}
}
}

Apologies for the eye-burning wall of text, it's been ages since I posted here and I don't remember how to quote.


7.

Muted

Topic: Would you let them?

Posted: 08/30/08 01:51 PM

Forum: General

The better question is: Can you stop them?

The FBI is watching yoooouuuu...

8.

Resigned

Topic: I Honestly Miss Pokemon

Posted: 08/30/08 01:47 PM

Forum: General

Gold and Silver were good.

After that; no. Just no.

Also, I never really wasted my time with the show.


9.

Shouting

Topic: I got in a fight with G-Unit

Posted: 08/30/08 01:43 PM

Forum: General

Shit was so cash.


10.

Expressionless

Topic: The Worst Virus you ever had

Posted: 08/30/08 01:01 PM

Forum: General

Worst I've been hit with is Virtumonde (a trojan).

Turns out, not only had the virus entrenched itself in my computer, but it had also brought 36 different contingency programs with it; they would immediatly re-install the trojan every time I got rid of it.

Getting rid of the virus included re-installing my OS, but, thankfully, I didn't lose any data.


11.

Resigned

Topic: Never take drugs. Ever.

Posted: 08/30/08 12:40 PM

Forum: General

Am I the only one who was completely unsurprised that this was a Scientologist ploy?


12.

Resigned

Topic: Kids And There Fucking Music!

Posted: 02/21/08 03:26 PM

Forum: General

There's shit music in every single music genre that exists.

Additionally, everyone's entitled to their own opinion/tastes, no matter how misguided you think they are.

I may not be the greatest authority on mainstream music, but seriously, get the fuck over yourselves.

Hot Tip: There's hundreds of hours of good music in virtually every genre in the Audio Portal.

13.

Elated

Topic: the "anything" topic

Posted: 02/14/08 05:50 PM

Forum: General

Post Count +1


14.

Questioning

Topic: A few epic links.

Posted: 02/12/08 09:59 PM

Forum: General

Thanks for the plugs, but iGod is old news.


15.

Resigned

Topic: I Got some what dumped

Posted: 02/12/08 09:57 PM

Forum: General

At 2/12/08 09:53 PM, zone12 wrote: look im really bad at grammar im im from motherland comrad

Location: canada

Also, Newgrounds cares about your relationship.


16.

Resigned

Topic: I've had enough with my life!!!

Posted: 02/12/08 09:53 PM

Forum: General

At 2/12/08 09:51 PM, Adamsky22 wrote: YOU SEE?!

That's what I mean!! No matter where I go, only SOME people try to help. Yet some are being assholes!
Whoever moderates these forums, please lock this thread!!!!

You set yourself up for it, really.


17.

Winking

Topic: I've had enough with my life!!!

Posted: 02/12/08 09:33 PM

Forum: General

At 2/12/08 09:24 PM, Adamsky22 wrote: All they do all day is knock down people and "teabag"them, and WHO do they target the most? ME!! Now they get the impression that I stalk girls!
No, they don't just go and treat me like a person at school.....THEY GET OUT THERE AND TREAT ME LIKE A DAMN DOG DRESSED IN A PUNCHING BAG!!!! >:(

Two words: Virginia Tech.

That'll teach 'em.


18.

Resigned

Topic: I suck as a person...

Posted: 02/12/08 09:29 PM

Forum: General

Because the BBS cares about your 'relationship problems'.


19.

Shouting

Topic: I'm tired of all the Madness spoofs

Posted: 02/12/08 09:16 PM

Forum: General

WHAT

In short, quit bitching about people spoofing people.


20.

Questioning

Topic: Piercing my nipple tomorow

Posted: 02/12/08 09:05 PM

Forum: General

Quick question:

If he's a guy, why do we give a shit about his tits?


21.

Goofy

Topic: overused and outdated meme police!

Posted: 02/11/08 05:32 AM

Forum: General

At 2/11/08 05:30 AM, poppy862 wrote: Oh, I'm sorry, I thought ou were reffering to me not being a mod and my legions of groupies. My bad.

You have groupies?


22.

Questioning

Topic: overused and outdated meme police!

Posted: 02/11/08 05:28 AM

Forum: General

At 2/11/08 05:22 AM, poppy862 wrote: You are a hypocrite. That is all.

I fail to see the hypocrasy of my post.

I stated that;

1): He and anyone he recruits have basically no power to prevent anyone from posting anything.

and 2): This thread belongs in C&C.

If you're implying that my posting the C&C comment was redundant;

1): I provided a link, and

2): I was typing up my post when you submitted yours.


23.

Questioning

Topic: Hobos earn more than soldiers?

Posted: 02/11/08 05:20 AM

Forum: General


24.

Resigned

Topic: overused and outdated meme police!

Posted: 02/11/08 05:15 AM

Forum: General

A: You're not a mod: What the hell would you and your groupies DO about it?

B: C&C plz


25.

Resigned

Topic: The Church of Scientology.

Posted: 02/11/08 05:02 AM

Forum: General

At 2/11/08 04:56 AM, wwwyzzerdd wrote: It's amazing that a lot of those articles could seriously have the words "Church Of Scientology" replaced with "Christianity," "Islam," "Judaism," etc., and still hold just as true, yet any outrage against them is considered incorrect. They exploit tax exemption by brainwashing individuals with out of date or highly illogical information just as much; so where's the calvary to eliminate them?

1: Christianity, etc. don't charge hundreds of dollars for religious learning. Scientology is the religion you buy.

2: Scientology has a history of going gung-ho with lawyers to shut critics down and conceal information about their religion.


26.

Happy

Topic: Whats with the angfy face!

Posted: 02/11/08 04:54 AM

Forum: General

At 2/11/08 04:47 AM, SoFreakingAwesome wrote: Lurk? Faggots lurk. Go die in a fire. I am alowed to do whatever, since its my own FREAKING THREAD! AUGGG!

You are a fucking moron.

Welcome to Newgrounds.


27.

Expressionless

Topic: flash super artists reg lounge

Posted: 02/11/08 04:23 AM

Forum: General


28.

Thinking

Topic: Whats with the angfy face!

Posted: 02/11/08 04:17 AM

Forum: General

At 2/11/08 04:08 AM, SoFreakingAwesome wrote: Stop making Three Letter Acronyms up. Fag.

SFA: SoFreakingAwesome.

Or in this case, StupidFuckingAsshole.

Oh really? There people here are being assholes, and so are you. And you all have better Icons that me. Fucktard.

And? Also, that's because we've been here for more than 24 hours.

My thread, my rules. And you;re the one mini modding and picking peoples mistakes.

Mini-modding: Pretending that you control topics that you make- Unless you have official moderator status, you have no room to push people around.

Also, picking on the new wave of uneducated '08 douchebags is the new fad.

Read up on the rules and lurk moar.


29.

Happy

Topic: Whats with the angfy face!

Posted: 02/11/08 04:02 AM

Forum: General

At 2/11/08 03:59 AM, SoFreakingAwesome wrote:
At 2/11/08 03:56 AM, SoulPiker wrote:
At 2/11/08 03:54 AM, SoFreakingAwesome wrote: Seriously whats with it? its all over newgrounds like on the validating page and forums! why?
Why don't you put your curser on the angry faic and wait for a while to find out.
YOU FREAKING SUCK AH THAT WAS SOOOO ANOYING! aUGH! GO DIE!

Smooth, Piker.

Also, SFA;

1: Caps Lock is NOT cruise control to cool.

2: Being an asshole gets you nowhere here.

3: This is NOT your thread. Sorry to rain on your parade, but the forums belong to Newgrounds INC.; and mini-modding makes you look like a douche.


30.

Resigned

Topic: 4chan!

Posted: 02/10/08 06:04 PM

Forum: General

Really, let's not.


All times are Eastern Standard Time (GMT -5) | Current Time: 07:41 AM

<< < > >>

Viewing 1-30 of 1,255 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 92542