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

We found 717 matches.


<< < > >>

Viewing 1-30 of 717 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91624

1.

Crying

Topic: First Post.

Posted: 07/17/07 04:12 PM

Forum: General

You make me sad but the redesign makes me happy.


2.

None

Topic: New Trumpet

Posted: 07/02/07 07:31 AM

Forum: General

At 7/2/07 07:24 AM, MC25 wrote:
At 7/2/07 07:14 AM, ChoosenStar wrote: So you've you been a girl for ten years!
OWNED
famous (strait) male trumpet players
http://en.wikipedia.org/wiki/List_of_jazz_tru mpeters

un-OWNED

Nice one but lets see if you can escape this one
I CHALLENGE YOU TO A DUEL!


3.

None

Topic: What if games became illegal?

Posted: 07/02/07 07:26 AM

Forum: General

then we'd be fucked


4.

None

Topic: i hate my life

Posted: 07/02/07 07:18 AM

Forum: General

Holy shit i know the solution stop playing WoW

dumbass

5.

None

Topic: New Trumpet

Posted: 07/02/07 07:14 AM

Forum: General

So you've you been a girl for ten years!

OWNED

6.

None

Topic: Semi decent PC games.

Posted: 07/02/07 07:13 AM

Forum: General

Thats up with pc topics?


7.

None

Topic: Pushups!

Posted: 07/02/07 07:13 AM

Forum: General

At 7/2/07 06:15 AM, itsflemz wrote:
At 7/2/07 06:07 AM, Frank-The-Hedgehog wrote: My friend all thinks I'm humping the floor when I do that. =(
Are you?

Yes are you?


8.

None

Topic: What do guys like better...

Posted: 07/02/07 07:12 AM

Forum: General

At 7/2/07 07:10 AM, Elesaurus wrote: bump

LOLZ


9.

None

Topic: Who Ya Gonna Call?

Posted: 07/02/07 07:11 AM

Forum: General

Who Ya Gonna Call?

Yo Momma foo!


10.

None

Topic: Pc Games

Posted: 07/02/07 07:10 AM

Forum: General

At 7/2/07 07:01 AM, poolkill wrote:
At 7/2/07 06:56 AM, Shadows-Studios wrote:
At least I did.
Heh. I knew I would get responses like this.

Why do I bother God?!?!?!

Yeah why do you bother


11.

None

Topic: Aren't jews white?

Posted: 07/02/07 07:08 AM

Forum: General

Even Purple.

Especially Purple.
Even especially purple
Even more especially purple

Even Most more especially purple.


12.

None

Topic: Aren't jews white?

Posted: 07/02/07 07:02 AM

Forum: General

At 7/2/07 07:01 AM, Ss2-teen-gohan-Ss2 wrote:
At 7/2/07 07:00 AM, Shadows-Studios wrote:
At 7/2/07 07:00 AM, mooseisloose wrote: jewish people can be any colour =/
Even Purple.
Especially Purple.

Even especially purple


13.

None

Topic: Aren't jews white?

Posted: 07/02/07 07:00 AM

Forum: General

They classify them as a religion.

smart ass

14.

None

Topic: quick question!!

Posted: 07/02/07 12:23 AM

Forum: Flash

Well make you character that is pre-animated and put this code in

onClipEvent(enterFrame){
if(this.hitTest(_root.cursor._x, _root.cursor._y, true)){
_root.gotoAndStop("2");
}
}

And for the enemy chasing your character take a look at this tutorial
link


15.

None

Topic: Script Help

Posted: 07/01/07 10:40 PM

Forum: Flash

here is my character' script

onClipEvent (load) {
var yspeed = 0;
var xspeed = 0;
var grav = 1;
var scale = _xscale;
var w = _width/2;
var h = _height/2;
var grounded = false;
var jump = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.gotoAndStop(2);
xspeed -= 1;
_xscale = -scale;
}
if (Key.isDown(39)) {
this.gotoAndStop(2);
xspeed += 1;
_xscale = scale;
}
if (Key.isDown(38)) {
if (grounded) {
yspeed = -jump;
}
}
if (!grounded) {
this.gotoAndStop(3);
}
if (!Key.isDown(37) && !Key.isDown(39) && !Key.isDown(38) && grounded == true) {
this.gotoAndStop(1);
}
yspeed += grav;
_y += yspeed;
_x += xspeed
xspeed *= .93;
grounded = false;
if (_root.ground.hitTest(_x-w, _y, true)) {
xspeed = 0;
while (_root.ground.hitTest(_x-w, _y, true)) {
xspeed = 0;
_x += .1;
}
}
if (_root.ground.hitTest(_x+w, _y, true)) {
while (_root.ground.hitTest(_x+w, _y, true)) {
_x -= .1;
}
}
if (_root.ground.hitTest(_x, _y-h, true)) {
yspeed = 0;
while (_root.ground.hitTest(_x, _y-h, true)) {
_y += .1;
}
}
if (_root.ground.hitTest(_x, _y+h, true)) {
yspeed = 0;
while (_root.ground.hitTest(_x, _y+h, true)) {
_y -= .1;
}
}
if (_root.ground.hitTest(_x, _y+h+20, true)) {
grounded = true;
}
}

It works to be truthful there are no errors but the sound doesn't play


16.

None

Topic: Script Help

Posted: 07/01/07 10:24 PM

Forum: Flash

**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 1: Statement must appear within on/onClipEvent handler
if (this.hitTest(_root.ground)) {

Total ActionScript Errors: 1 Reported Errors: 1


17.

None

Topic: Script Help

Posted: 07/01/07 10:16 PM

Forum: Flash

At 7/1/07 10:13 PM, Fion wrote: Try this out:

thank you I hope this works


18.

None

Topic: Script Help

Posted: 07/01/07 10:10 PM

Forum: Flash

At 7/1/07 10:06 PM, LCurtis wrote: Look in the flash help (f1) and look up attachSound.

That doesn't help with my problem I know how to add sound when i press a certain key but when my character touches something i was that something a to make a sound


19.

None

Topic: Script Help

Posted: 07/01/07 10:03 PM

Forum: Flash

I posted this yesterday but no one was able to help with my problem, what I want is that when my character jumps on a block (the floor) a sound appears.


20.

None

Topic: Why America?

Posted: 07/01/07 08:35 PM

Forum: General

I have no idea and i don't think they should rant about on a site where 75% of the user live in America and where the creator of the site is also American. They also have to be more specifi, North America ,south? where in America Mexico?


21.

None

Topic: To the makers of drug topics

Posted: 07/01/07 07:54 PM

Forum: General

At 7/1/07 07:43 PM, Peaceblossom wrote: Bah, without drug topics, how am I going to know what drugs fuck you up and make you spell bad and what drugs are just fine.

So far the LSD and Ecstacy users have better grammar and spelling than the pot users.

School is suppose to teach you about drugs no?

like dare.

22.

None

Topic: Script Help

Posted: 07/01/07 07:37 PM

Forum: Flash

At 7/1/07 05:59 AM, Nqkoi1 wrote: thats simple do u still need the code

yeah i still do please help


23.

None

Topic: Flash Preview Problems

Posted: 07/01/07 03:41 AM

Forum: Flash

At 7/1/07 03:35 AM, Kuoke wrote: What's he supposed to upload?
Have you been reading through this thread?

One of his flashes


24.

None

Topic: Flash Preview Problems

Posted: 07/01/07 03:31 AM

Forum: Flash

upload it somewhere then preview it like imageshack or denvish


25.

None

Topic: sorry but:

Posted: 07/01/07 03:26 AM

Forum: Flash

At 7/1/07 03:23 AM, senior-twinki wrote: Okay thanks :)

also if that doesn't work remember check if it has the code :

onClipEvent(enterFrame){
if(this.hitTest(_root.cursor._x, _root.cursor._y, true)){
_root.gotoAndStop("2");
}
}


26.

None

Topic: sorry but:

Posted: 07/01/07 03:13 AM

Forum: Flash

At 7/1/07 02:56 AM, senior-twinki wrote: but, I've got a question. When I add something new to scene (a new obstacle) whenever the player hits it, he doesn't die :( why is this?

Make sure that the obect is in the center of the +


27.

None

Topic: Mute/unmute Button & Flv Looping

Posted: 07/01/07 02:51 AM

Forum: Flash

At 7/1/07 02:23 AM, Szs315 wrote: Hold on, sorry i don't know how to edit posts. I found out that even though it said there was a problem, the mute/unmute button worked!

Now all I need is a way to loop my flv automatically. Thank you.

There is edit button but you can google something it'll come up


28.

None

Topic: sorry but:

Posted: 07/01/07 02:31 AM

Forum: Flash

At 7/1/07 02:28 AM, senior-twinki wrote: Thanks so much!! >< I'm going to make a stealth game :)

No problem you do;t have credit me seeing how i don't care about that file anymore


29.

None

Topic: Script Help

Posted: 07/01/07 02:10 AM

Forum: Flash

At 7/1/07 02:01 AM, senior-twinki wrote: put the sound in one frame of the MC

Ok by the way i uploaded the template on your thread


30.

None

Topic: sorry but:

Posted: 07/01/07 02:06 AM

Forum: Flash

Here it is

If you have a V-Cam, put this code into it:
onClipEvent (enterFrame) {
_y += (_root.cursor._y-_y)/4;
_x += (_root.cursor._x-_x)/4;
}


All times are Eastern Standard Time (GMT -5) | Current Time: 04:53 AM

<< < > >>

Viewing 1-30 of 717 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91624