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: 'ShroomsToday'

We found 130 matches.


<< < > >>

Viewing 1-30 of 130 matches. 1 | 2 | 3 | 4 | 5

1.

None

Topic: iPod

Posted: 09/26/09 08:02 AM

Forum: General

At 12/31/08 10:29 AM, Playerthy2nd wrote: That old 2GB one before the short and before the new one.

this one


2.

None

Topic: Who's up for some Jenga?

Posted: 09/11/09 09:14 AM

Forum: General

Shit!

Sorry guys

Who's up for some Jenga?


3.

None

Topic: How would you improve your life?

Posted: 09/11/09 09:01 AM

Forum: General

I wish I'd never found out about newgrounds.

maybe I'd have more friends


4.

None

Topic: Lies! X3

Posted: 09/10/09 05:07 AM

Forum: General

That the broken light switch in my house turned the light in the living room of my Grandma's house on and off.

I remember flicking it giggling as I imagined grammy being confused as hell wondering what's up with the lights.


5.

None

Topic: Does Anybody Know Of...?

Posted: 09/10/09 05:05 AM

Forum: General

I don't quite understand, you want to view a page, instead of clicking on and viewing it? Is there even a purpose to that? Unless you mean that you want to see the url before you click, which I believe there is a firefox addon you can get, not sure what it's calles.


6.

None

Topic: The worst chapter in your life?

Posted: 09/10/09 05:00 AM

Forum: General

My days a fetus, blocked off from the real world, lonely, cold.


7.

None

Topic: Analog Line In? Wtf Is This

Posted: 09/10/09 04:57 AM

Forum: General

Apology accepted, you may carry on.


8.

None

Topic: I just confessed my love to a girl

Posted: 09/10/09 04:51 AM

Forum: General

She probably didn't like your little speech, it's not as romantic as you may think.


9.

None

Topic: I Have Armpit Hair!

Posted: 08/23/09 07:11 AM

Forum: General

I got it when i was 9.

I was always teased at pool parties and such, until the rest of my friends caught up a few years ago.

It sucked.


10.

None

Topic: reguarding turtle tossing game.

Posted: 08/23/09 06:45 AM

Forum: General

You were a jackass who didn't give constructive critisism and just voted low because you "like turtles".

Which is why it was deleted


11.

None

Topic: Scribblenauts- Best Ds Game Of E3

Posted: 08/02/09 04:50 AM

Forum: Video Games

This better not turn out like Spore.

But I've got a special feeling about this one.

then again, I had a "special feeling" about Spore too.

12.

None

Topic: Official Dota Thread.

Posted: 08/02/09 04:39 AM

Forum: Video Games

At 8/1/09 03:01 PM, FBIpolux wrote:

At 8/1/09 05:19 AM, ShroomsToday wrote: I'll stick around, if this doesn't get locked like the last dota thread.

My favourite hero is probably Slithice or Barathrum.
Last DOTA thread was a shitty DOTA Club in the C&C... :c

Haha Barathrum. You like challenge don't you? (Sarcasm)

alright, I won't stick around if you're going to be a jerk about it.


13.

None

Topic: Official Dota Thread.

Posted: 08/01/09 05:19 AM

Forum: Video Games

I'll stick around, if this doesn't get locked like the last dota thread.

My favourite hero is probably Slithice or Barathrum.


14.

None

Topic: Name for my fish!

Posted: 07/28/09 05:24 AM

Forum: General

John McCain and Barrack Obama

man, i am SO witty

15.

None

Topic: Choosing a Mental Illness

Posted: 07/28/09 05:19 AM

Forum: General

OCD sounds like it could be really useful, if you could tune it to make yourself less lazy. Something like feeling the need to clean my room or whatever.


16.

None

Topic: My Friends Are Dicks! Help!

Posted: 07/28/09 03:23 AM

Forum: General

At 7/28/09 03:18 AM, Emomudkip wrote: Heres what you do.
You go to there houses... One by one, and you replace every shampoo bottle with hair remover. =P
That should teach them

And if they end up fapping in the shower it'll turn out even better!


17.

None

Topic: (AS2) Problems with weapon swing.

Posted: 07/27/09 07:23 AM

Forum: Flash

BAHAHAHHAHA, alright, I had a look at the code asgrunt told me and i realised you could manipulate
if ._currentframe == 1

and it came to me, all i need is this, nothing else, and it works fine!

onClipEvent (enterFrame) {
	if (Key.isDown(Key.SPACE) && this.hammer._currentframe == 1) {
		this.hammer.gotoAndPlay(2);
	}
}

can't believe how simple that was


18.

Sleeping

Topic: (AS2) Problems with weapon swing.

Posted: 07/27/09 02:33 AM

Forum: Flash

At 7/27/09 02:10 AM, CraneShot wrote:
At 7/27/09 02:04 AM, ShroomsToday wrote:
At 7/27/09 02:02 AM, CraneShot wrote: stuff

I just hope Noxac comes back :S


19.

None

Topic: Help In Flash Cs3! (as2)

Posted: 07/27/09 02:30 AM

Forum: Flash

Put this on the symbol.

gotoAndStop(2)
(stopAllSounds());
}

and then on whatever frame you are going to use this.

var segs:Number = 0; //This is where we will store the segs played
var misonido:Sound = new Sound();
misonido.attachSound("misonido"); //misonido is the linkage id of the sound in the library
misonido.start(0); //Start from the beginning

var pausado:Boolean = false;

function resumeSound(){
if(pausado){ //check if the sound was paused
// trace(segs/1000); //The number stored is in miliseconds, so you need to
//make it seconds
misonido.start(segs/1000);
pausado = false; //sound is not paused anymore
}

}

function stopSound(){
segs = misonido.position;
stopAllSounds();
pausado = true;
}

and that's it, unless you're not swapping through frames, then i have no idea how to help you


20.

Expressionless

Topic: (AS2) Problems with weapon swing.

Posted: 07/27/09 02:04 AM

Forum: Flash

At 7/27/09 02:02 AM, CraneShot wrote: sorry to double post, but i ment to say that its in AS3.

That would explain why i kept getting syntax errors when I tried to put that in my code .


21.

None

Topic: (AS2) Problems with weapon swing.

Posted: 07/27/09 01:47 AM

Forum: Flash

At 7/27/09 01:39 AM, Noxac wrote: stuff

Well, that code did work, but only for the first swing, if i swing the hammer a second time the same problem as before occurs, but thanks ALOT for helping me anyway.


22.

None

Topic: (AS2) Problems with weapon swing.

Posted: 07/27/09 01:34 AM

Forum: Flash

At 7/27/09 01:23 AM, CraneShot wrote: why do u have _root.timer++
do u even need that in there?

I would presume so, considering that if the timer is on 0, then attacking is false allowing you to attack, but if you press space it goes up by 1 second. Which means you must wait 1 second for you to be able to swing again.

But I may be wrong, I only started actionscript a little under a month ago, and if you could give me a solution rather than saying i have useless code, it would be greatly appreciated.


23.

None

Topic: Buying Flash

Posted: 07/27/09 01:16 AM

Forum: Flash

It really doesn't matter that much what version you use, I had CS3 on my old computer a couple years back, and, well, it was great. But then the computer just inexplicable broke and I couldn't get cs3 back, but I managed to get Flash MX 2004 for super cheap this year, and I'm hardly noticing any difference, sure this doesn't have AS3, but I don't care, I know AS2 better than 3.

If it's your first version of flash you're buying you might as well just go for an early version, just make sure it atleast has AS2. Because, who knows, it might turn out you're not that into flash, it really is something you have to dedicate yourself to.


24.

None

Topic: (AS2) Problems with weapon swing.

Posted: 07/27/09 01:08 AM

Forum: Flash

So i have a mc called player that you move with the arrow keys, when space is pressed it plays the hammer swing animation, which you can use to kill enemies etc.

So that's all fine and dandy but i want to make it so when you press space while the hammer swing animation is in action, it won't reset the hammer and you actually have to wait until the hammer swing finishes, how should I go about this.

My current code:

onClipEvent (enterFrame){
if (_root.timer = 0){
_root.attacking = false;
}
}

onClipEvent (enterFrame){
if (Key.isDown(Key.SPACE) && !attacking) {
(_root.player.hammer.gotoAndPlay(2));
_root.timer++;
}
}

What's going wrong?


25.

None

Topic: Books that blew your mind.

Posted: 07/27/09 12:10 AM

Forum: General

At 7/26/09 02:02 PM, Porkchop wrote: Preferably books that blew your mind.

Playboy, harhar.


26.

None

Topic: so NG whats your favorite gun?

Posted: 07/27/09 12:09 AM

Forum: General

Well I generally like to use my custom made PissTool

I mean Pistol.


27.

None

Topic: Swallowing salt water

Posted: 07/27/09 12:02 AM

Forum: General

Actually, it dehydrates you faster than it hydrates you. That's why you're not suppose to drink sea water.

And it tastes like piss anyway so why bother.


28.

None

Topic: Hair on the freaking soap.

Posted: 07/26/09 11:59 PM

Forum: General

Shawty.


29.

None

Topic: Website naming contest

Posted: 07/26/09 11:44 PM

Forum: General

What about, Herbal....Waffle....com

I don't freakin' know.


30.

None

Topic: Free meal with a twist.

Posted: 07/26/09 09:49 PM

Forum: General

The cake with the saw inside it.

You know what I'm talking about.


All times are Eastern Standard Time (GMT -5) | Current Time: 10:50 PM

<< < > >>

Viewing 1-30 of 130 matches. 1 | 2 | 3 | 4 | 5