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

We found 1,327 matches.


<< < > >>

Viewing 211-240 of 1,327 matches. 135 | 6 | 7 | 8 | 9 | 10 | 112845

211.

None

Topic: MC's won't "save"

Posted: 01/30/08 09:56 PM

Forum: Flash

Anything on a frame is separate to another frame, unless you directly change its properties. Theres a few ways to fix it, simple on the top of my head is too just do this on the button going to next frame-

_root.head = _root.chararactersheadframe._currentfram e
_root.bodypiece = _root.chararactersbodyframe._currentfram e

then on the 3rd frame put on the guys head -

onClipEvent (load) {
this.gotoAndStop(_root.chararactersheadf rame)
}

etc. etc.


212.

None

Topic: SOMEBODY IS UOTD

Posted: 01/25/08 02:47 AM

Forum: General

At 1/25/08 02:12 AM, BlueHippo wrote:
got lazy, sorry Bwian
Congrats to B34T1N, today's UOTD. 05 level 11 last active in november.

Whoa someone I have on my msn got user of the day, ill go tell him :o GRATZ B34T1N


213.

None

Topic: What is it??

Posted: 01/24/08 12:08 AM

Forum: General

uhhh no


214.

None

Topic: How many kids can you take on?

Posted: 01/23/08 04:40 AM

Forum: General

At 1/23/08 04:31 AM, Greenskullkid wrote: 23 that would be so fun

Yeah very fun, till the 5 year old is on your head with a baby toy lodged into your eye socket..


215.

None

Topic: How many kids can you take on?

Posted: 01/23/08 03:14 AM

Forum: General

I can take on 22 apparently.

http://www.howmanyfiveyearoldscouldyouta keinafight.com/

How bout you?


216.

None

Topic: <3 <3 Happy Birfday Luis <3 <3

Posted: 01/19/08 07:49 AM

Forum: Flash

Feels like its always luis's birthday.... shrug.

HAPPY BIRTHDAY


217.

None

Topic: See-Saw?

Posted: 01/13/08 08:10 AM

Forum: Flash

thats strange if you highlight the text the whole thing ceases to work....weird


218.

None

Topic: See-Saw?

Posted: 01/13/08 08:08 AM

Forum: Flash

Ugh I had a go... but I didnt add the bit how it rotates more if they are closer to the edge which is the most important part cause i was having a problem with it and i need to fiddle with it too work... but im tired and gonna go bed so ill post what i did anyway.....

Click mouse above bar..

stupid see saw


219.

None

Topic: See-Saw?

Posted: 01/13/08 07:30 AM

Forum: Flash

SEE SAW :D

but im guessing you probably mean more like, a see saw that you throw weights on either end right?


220.

None

Topic: The Flash 'Reg' Lounge

Posted: 01/12/08 11:31 PM

Forum: Flash

RE: Sleep
I get around 6 hours every day except for Sundays where i get 10.
However, when not on tablets to control ye old excema, that gets halfed. Damn thing wakes me up at 2 or 3 and keeps me up for a good few hours. Anyone else suffer from it, and to that extent?

Yeah I suffer from eczema bad...had it since I was born, main reason I'm an indoor person and don't have much confidence talking to girls (cause it looks yuck on my face.. :( ) I also lay awake scratching a lot of nights, sucks eh. YOu got msn? I'd love to talk to ya about, see what you use etc. I don't know anyone else with it.

On the plus side, it kept me indoors playing games and on the computer and thats what probably made me good at Flash....hah, theres some irony...


221.

None

Topic: New sponsor in town!

Posted: 01/10/08 06:36 PM

Forum: Flash

Rustygames are great just thought I'd add :) they sponsored one of my games and were really great to work with.


222.

None

Topic: Pepper Eating Contest Demo

Posted: 01/10/08 06:23 PM

Forum: Flash

Heres the real version >

http://www.guzer.com/games/eat.php

You can see how hes just pasted over the copyright bit down the bottom!


223.

None

Topic: Pepper Eating Contest Demo

Posted: 01/10/08 06:21 PM

Forum: Flash

You didn't make that you liar. I have that game on my computer from when i played it years ago.


224.

None

Topic: Math round how does it worK?

Posted: 01/04/08 05:22 AM

Forum: Flash

At 1/4/08 05:19 AM, Healthy wrote: o.o I dont want to round 1 or anything, i want score to be rounded. Il try it but.

Thats what it does, just put Math.round in front of any number you're adding to your score in your other parts of code.


225.

None

Topic: Math round how does it worK?

Posted: 01/04/08 05:17 AM

Forum: Flash

onEnterFrame = function () {
	score = Math.round(1);
};

and if you put

onEnterFrame = function () {
	score = Math.round(1.7);
};

It will round up too 2


226.

None

Topic: flash slot machine actionscript

Posted: 01/03/08 11:18 PM

Forum: Flash

just put it after it -

on (press) {
gotoAndPlay(2);
_root.totalmoney -= 5;
}
on (press) {
_root.hello1 = Math.round(Math.random()*3);
}
on (press) {
_root.hello2 = Math.round(Math.random()*3);
}
on (press) {
_root.hello3 = Math.round(Math.random()*3);
}
on (release) {
if (_root.hello1 == 1 and _root.hello2 == 1 and _root.hello3 == 1) { _root.totalmoney += 5 } if (_root.hello1 == 2 and _root.hello2 == 2 and _root.hello3 ==2) { _root.totalmoney += 5 } if (_root.hello1 == 3 and _root.hello2 ==3 and _root.hello3 ==3) { _root.totalmoney += 5 }
}
}

that should work...i think... i didnt test it tho

}


227.

None

Topic: flash slot machine actionscript

Posted: 01/03/08 10:56 PM

Forum: Flash

then try putting this in your enterframe

if (_root.hello1 == 1 and _root.hello2 == 1 and _root.hello3 == 1) {
_root.totalmoney += 5
}

if (_root.hello1 == 2 and _root.hello2 == 2 and _root.hello3 ==2) {
_root.totalmoney += 5
}

if (_root.hello1 == 3 and _root.hello2 ==3 and _root.hello3 ==3) {
_root.totalmoney += 5
}

228.

None

Topic: as 2 help... dupe/hittests

Posted: 01/03/08 10:52 PM

Forum: Flash

what is mouse1? because mouse1 doesnt mean the actual mouse

if (mouse1.hitTest(_root["plus1"+i])) {

for an easier way you could always just put this on the object your duplicating -

on (rollOver) {
removeMovieClip(this);
_root.score += 1;
}


230.

None

Topic: I tried google...

Posted: 01/02/08 09:35 PM

Forum: General

Sigh....


231.

None

Topic: Gaming = Education?

Posted: 12/25/07 06:39 AM

Forum: General

A lot of games these days are based on wars and historic moments, so they should do a lot more detailed ones and play them in school to learn.

Woudn't that make it so much more fun to learn, this week we're learning about gallipoli, so you're put on the beach in a FPS and have to see for yourself.

"shit man did u do your homework, "cant beat the fuken last boss so i cant learn about the russian revolution cause the fuken leader keeps spearing me through the head"


232.

None

Topic: Should I go to hospital

Posted: 12/19/07 07:57 AM

Forum: General

I been going to the toilet like 2 times every day lately, which is unusal for me since i usually go once every 2 days, and my shits been a lot darker...had small stomach aches below my stomach in intestines...but its very dull....then I just vomited but now i feel better after that,

could it be possible i have like intestine infection or something....

im so paranoid when it comes to these things :(


233.

None

Topic: Saturday=Ericday.

Posted: 12/08/07 10:57 PM

Forum: General

NAME STEALER!


234.

None

Topic: Where's the Easter Egg?

Posted: 12/04/07 07:22 AM

Forum: General

I am Eggy the easter egg.


235.

Sleeping

Topic: Topics only do well with emote

Posted: 12/04/07 12:37 AM

Forum: General

Look at all the topics with more then one page, they have emotes on the side <

If you forget this emote... your topic fails :/


236.

None

Topic: Your Faveourite Npc

Posted: 12/04/07 12:28 AM

Forum: General

The tutorial chick in Viva Pinata

cause if you hit her with your shovel she takes it and says you cant have the shovel anymore

i was all like :O :<


237.

None

Topic: Hypothetically speaking...

Posted: 12/04/07 12:24 AM

Forum: General

Dam there was this comedy vid on youtube of this happening it was funny... but I cant find it to link it

in the future he turns gay and comes back to have sex with himself cause hes the only one gay enough for him, but he was straight in the past and doesnt want too and trys to kill himself but he cant otherwise that iwll kill him in the future...

yeah you get the idea..


238.

None

Topic: A hypothetical for Christians

Posted: 12/04/07 12:10 AM

Forum: General

Although letting anyone die as a result of my actions is terrible no matter what happens, I am a practical person, and the weight of a damned soul is much more than that of a dead believer.

I could in no way save a saved person before giving an unsaved man/woman more time to accept Christ.

The perfect Christian answer, but are you being honest...

When truly faced with your mum/dad anyone, screaming at you for help over this random. COuld you really do it.


239.

None

Topic: A hypothetical for Christians

Posted: 12/03/07 11:55 PM

Forum: General

You're walking along, and you see 2 people about to die. You only have time to save one..

One person is a family member who you love dearly, shes a christian all her life and will go to heaven when she dies.

The other is a random person who's been an atheist his life but he had promised he would convert to Christianity and repent later on that day.

Do you let your loved one die and go to heaven, or save her because you love her.
or do you let the other person die and go to hell.


240.

None

Topic: Top entries from 11/29/2007!

Posted: 11/30/07 01:41 AM

Forum: P-bot's Postings

Dam overtaken and at the end, oh well. Yay 3rd!


All times are Eastern Standard Time (GMT -5) | Current Time: 01:16 AM

<< < > >>

Viewing 211-240 of 1,327 matches. 135 | 6 | 7 | 8 | 9 | 10 | 112845