Newgrounds.com — Everything, By Everyone.

Checking login status…

USERNAME:

PASSWORD:

Logging in…

Logged in as:
.
Logging out…
Inbox My Account Log Out


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

We found 289 matches.


<< < > >>

Viewing 1-30 of 289 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10

1.

None

Topic: Metal Gear Collab (Update)

Posted: 06/12/08 02:48 PM

Forum: NG News

i like flash movies about metal gear


2.

None

Topic: Top entries from 06/09/2008!

Posted: 06/10/08 09:42 PM

Forum: P-bot's Postings

they all sucked except for soulja pig


3.

None

Topic: Ronald McDonald...

Posted: 05/27/08 05:29 AM

Forum: General

fuck ronald

it's what everyone was thinking, i'm just the one that said it


4.

None

Topic: Stealing Awards

Posted: 05/06/08 10:33 AM

Forum: General

At 5/5/08 09:50 PM, WadeFulp wrote: Some users and groups have been stealing Portal awards from some time now. I will have my Portal Watch team keep me informed when they spot this type of activity. Users found participating in such activity will have their accounts locked down or termianted. This has already begun as we have warned users about this in the past. Users found to be cheating our system (even if they didn't submit the entry involved, but are participating in the abuse) will be dealt with. Alts will be tracked down to main accounts, main accounts will be locked down or termianted. This is your final notice.

This didn't work before and it sure as hell isn't going to work now. Nice thought, though. It's spelled terminated by the way.


5.

None

Topic: I love you

Posted: 04/25/08 02:27 AM

Forum: General

This is the gayest thread I've ever seen. Please, don't let me interrupt, continue sucking each other's greasy dicks.


6.

None

Topic: Meanest thing to say to a girl?

Posted: 04/25/08 02:25 AM

Forum: General

I love you


7.

None

Topic: Funny thread title pairs.

Posted: 04/25/08 02:24 AM

Forum: General

teh


8.

None

Topic: crews are dead

Posted: 04/25/08 02:23 AM

Forum: General

teh


9.

None

Topic: crews are dead

Posted: 04/24/08 04:07 PM

Forum: General

teh


10.

None

Topic: crews are dead

Posted: 04/24/08 01:06 AM

Forum: General

teh


11.

None

Topic: Top entries from 03/03/2008!

Posted: 03/04/08 01:19 AM

Forum: P-bot's Postings

Aww mayun.


12.

None

Topic: Saving The World!

Posted: 12/27/07 02:01 PM

Forum: NG News

This is a great way to give dick jokes to developing nations who never had the resources to enjoy dick jokes before.


13.

None

Topic: Actionscript help would be awesome

Posted: 09/25/07 04:16 PM

Forum: Flash

I've managed to fix everything but one line of code:

onClipEvent(load){
_root.xspeed=0.0;
_root.yspeed=0.0;
_root.velocity=0.0;
_root.ang=0.0;
_root.maxair=25.0;
_root.maxspeed=35.0;
_root.maxgrind=45.0;
_root.gravity=1.0;
_root.accel=1.0;
_root.accelgrind=2.0;
_root.jump=25.0;
}
onClipEvent (enterFrame) {
_root.main._x += _root.xspeed;
_root.main._y += _root.yspeed;
if (_root.xspeed>0) {
_root.main.gotoAndStop(1);
} else if (_root.xspeed<0) {
_root.main.gotoAndStop(2);
} else {
_root.main.stop();
}
for (ex=1; ex<=5; ex++) {
if (_root["platform"+ex].hitTest(_root.main ._x, _root.main._y, true)) {
_root.ang = _root["platform"+ex].rampang;
if (Key.isDown(Key.LEFT)) {
if (_root.velocity<0) {
_root.main.inne.play();
} else {
_root.main.inne.gotoAndStop(1);
}
_root.velocity -= _root.accel;
} else if (Key.isDown(Key.RIGHT)) {
if (_root.velocity>0) {
_root.main.inne.play();
} else {
_root.main.inne.gotoAndStop(1);
}
_root.velocity += _root.accel;
} else {
_root.main.inne.gotoAndStop(1);
}
_root.main._rotation=(_root.main._rotati on+_root.ang)/2.0;
_root.velocity += ((_root.ang)*(.01)*_root.gravity);
_root.xspeed = Math.sin((180-(_root.ang+90)) * Math.PI/180)*_root.velocity;
_root.yspeed = Math.cos((180-(_root.ang+90)) * Math.PI/180)*_root.velocity;
}
}
}

_root.velocity += ((_root.ang)*(.01)*_root.gravity);
the 6th line from the bottom causes _root.velocity to become NaN. when I change this code to _root.velocity = 3, the character moves correctly, but without the pull of the gravity. The problem is the _root.ang, which seems to never want to work correctly.


14.

None

Topic: Actionscript help would be awesome

Posted: 09/25/07 03:48 PM

Forum: Flash

http://img216.imageshack.us/my.php?image =billymonksgametestfi5.swf

Here's the swf. IM me if you want the fla.


15.

Beaten

Topic: Actionscript help would be awesome

Posted: 09/25/07 03:21 PM

Forum: Flash

onClipEvent(load){
_root.xspeed=0.0;
_root.yspeed=0.0;
_root.velocity=0.0;
_root.ang=0.0;
_root.maxair=25.0;
_root.maxspeed=35.0;
_root.maxgrind=45.0;
_root.gravity=1.0;
_root.accel=1.0;
_root.accelgrind=2.0;
_root.jump=25.0;
}
onClipEvent (enterFrame) {
this._x += _root.xspeed;
this._y -= _root.yspeed;
if (_root.xspeed>0) {
_root.main.gotoAndStop(1);
} else if (_root.xspeed<0) {
_root.main.gotoAndStop(2);
} else {
_root.main.stop();
}
for (ex=1; ex<=5; ex++) {
if (_root["platform"+ex].hitTest(_root.main ._x, _root.main._y, true)) {
_root.ang = _root["platform"+ex].rampang;
if (Key.isDown(Key.LEFT)) {
if (_root.velocity<0) {
_root.main.inne.play();
} else {
_root.main.inne.gotoAndStop(1);
}
_root.velocity -= _root.accel;
} else if (Key.isDown(Key.RIGHT)) {
if (_root.velocity>0) {
_root.main.inne.play();
} else {
_root.main.inne.gotoAndStop(1);
}
_root.velocity += _root.accel;
} else {
_root.main.inne.gotoAndStop(1);
}
_root.main._rotation=(_root.main._rotati on+_root.ang)/2.0;
_root.velocity += ((_root.ang)*(.01)*_root.gravity);
_root.xspeed = Math.sin(_root.ang)*_root.velocity;
_root.yspeed = Math.cos(_root.ang)*_root.velocity;
}
}
}

On each segment of platform, the code:
onClipEvent(enterFrame){this.rampang=(nu mber between 90 and -90);}

For some reason, the character is rotating correctly for the ramp he's on, but _root.velocity keeps immediately becoming NaN, causing xspeed and yspeed to also become NaN. This is very distressing. Even more distressing is that when I change _root.velocity += ((_root.ang)*(.01)*_root.gravity); to _root.velocity = 3; the character moves in the wrong direction. Any help would be much appreciated.


16.

None

Topic: Beat up cause of my lightsaber dog

Posted: 03/27/07 11:06 PM

Forum: General

If you want to be a true Jedi Knight you have to defend yourself.


17.

None

Topic: Someone stole my iPod

Posted: 03/20/07 01:58 PM

Forum: General

You should always carry a revolver in Mexico.


18.

None

Topic: Star Syndicate Virus

Posted: 02/19/07 06:23 PM

Forum: Flash

I accidentally got infected by the SS virus. Is the antidote done yet?...


19.

None

Topic: The Six Gods Of Newgrounds!

Posted: 02/06/07 10:34 PM

Forum: General

At 8/10/06 01:41 PM, blue-block wrote: There are Six gods.

#1 Jim, God among Men, He is man who makes great flash game called Divine intervention Part 1.

#2 Tom fulp, He made the portal, which all the greatest flashes have passed through

#3 Wade fulp, What the hell do you expect he's WADE FULP

#4 Stamper, ummm He's Stamper

#5 -Knox-, God of blue klaymen and voice overs

#6 is two gods in one, Max and Krinkles, They both made the greatest game on the web called Madness Interaactive and sparked

this

This is the gayest thread in the world. No matter how hard you try, you will never be able to create a gayer thread.

Just kidding man, keep it up!


20.

None

Topic: Is censorship good or bad?

Posted: 02/06/07 10:21 PM

Forum: General

Senshroship is bad!

I heard that George Bush wants to take away our freedoms and fuck that man freedom is what amerikca is all about

fuck bush and fuck censorhyip


21.

None

Topic: My mom is cheating on my dad

Posted: 01/28/07 05:19 AM

Forum: General

Take your mom to court and ask her to give her testimony.


22.

None

Topic: The Incredible Newgrounds T-shirt

Posted: 01/28/07 05:01 AM

Forum: General

Hahaha, I love the NG BBS.


23.

None

Topic: Anyone I know or who knows me

Posted: 01/28/07 04:56 AM

Forum: General

At 1/28/07 02:33 AM, Pantomime-Horse wrote: Hi, I haven't been around in fuck knows how long, was getting vaguely nostalgic, thought I'd say hi, Anyone I know or who knows me still around?

Sup man it's been a while we know each other.


24.

None

Topic: The Incredible Newgrounds T-shirt

Posted: 01/28/07 04:51 AM

Forum: General

At 1/28/07 04:40 AM, DrDickHead wrote: mista chocobo gots them moves

MrChocobo's smooth moves

True.

I need to buy more Newgrounds t-shirts.


25.

None

Topic: The Incredible Newgrounds T-shirt

Posted: 01/28/07 04:03 AM

Forum: General

Yes, it's very sad. =(

This is all very emotional for me.


26.

None

Topic: The Incredible Newgrounds T-shirt

Posted: 01/28/07 03:00 AM

Forum: General

So Friday morning I received my Newgrounds t-shirt in the mail from the monthly contest, and on Saturday night, a few hours ago, I decided to go see Smokin' Aces in my new Newgrounds t-shirt. The movie was terrible, but before the movie, there was this really cute girl ripping tickets at the entrance, and she told me "Hey, nice t-shirt!"

That made my day, even if I'll probably never see her again.


27.

None

Topic: BPB is destroyed

Posted: 10/24/06 02:33 PM

Forum: General

This is a really big deal... Wow... Crappy movies getting through the portal... I've never heard of something like this happening ever before...


28.

None

Topic: tomorrow's nobodies NG account hack

Posted: 10/24/06 02:30 PM

Forum: General

I know who did it and I have proof.


29.

None

Topic: The worst matrix collab ever

Posted: 10/02/06 10:40 PM

Forum: Flash

This is going to be one of the best collabs of all time, imo.


30.

None

Topic: I Can't Play Sa:mp.

Posted: 09/28/06 02:02 PM

Forum: General

At 9/28/06 01:46 PM, whooter wrote:
At 9/28/06 01:44 PM, MrChocobo wrote:
At 9/28/06 01:20 PM, whooter wrote: Your level of stupidness is fucking unfathomable.
Irony with respect to grammar.
Thank you?

You're welcome. B)


All times are Eastern Daylight Time (GMT -4) | Current Time: 06:36 PM

<< < > >>

Viewing 1-30 of 289 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10