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

We found 70 matches.


<< < > >>

Viewing 1-30 of 70 matches. 1 | 2 | 3

1.

None

Topic: key pressing problems...

Posted: 11/07/05 10:00 PM

Forum: Flash

ok, it turns out the code is fine. ied it on another computer and it works like it should. so what's wrong with my computer? is there some setting that is causing this problem, or do i just have a shitty keyboard?


2.

None

Topic: key pressing problems...

Posted: 11/07/05 08:47 PM

Forum: Flash

Everything there is supported by flash 5. it works exactly like it should if you are moving up and right and press space, but if you are moving any other diagonal direction pressing space does nothing.


3.

None

Topic: Leg moving

Posted: 11/07/05 12:11 AM

Forum: Flash

copy the frames of the leg you have into a layer behind the curent one, and shift all the frames so it starts where you want it too.


4.

None

Topic: key pressing problems...

Posted: 11/07/05 12:09 AM

Forum: Flash

no one has any suggestions?

I'm baffled as to why it works fine when pressing up and right then hitting space, but it won't work when going any other two directions...


5.

None

Topic: key pressing problems...

Posted: 11/06/05 10:15 PM

Forum: Flash

I'm having some problems with a game i'm working on detecting key strokes.

this is my code so far

if(Key.isDown(Key.SPACE) and this.del<=0 and this.stat==1) {pickup()};
if(Key.isDown(Key.SPACE) and this.del<=0 and this.stat==2) {throwdot()};
if(Key.isDown(Key.LEFT)) {this.xmove-=this.speed};
if(Key.isDown(Key.RIGHT)) {this.xmove+=this.speed};
if(Key.isDown(Key.UP)) {this.ymove-=this.speed};
if(Key.isDown(Key.DOWN)) {this.ymove+=this.speed};

Arrow keys move the character around, and space picks stuff up, if you are already carrying something space will throw it.

everything works fine, unless you try to press three keys at once.

if you are carying something and moving diagonally it won't respond to pressing space, unless you are moving up and right, then it works fine.

anyone know how i can fix this? maybe there is a better command than isDown? i'm using Flash 5.


6.

None

Topic: hit detection problem

Posted: 11/06/05 02:06 PM

Forum: Flash

At 11/6/05 01:26 AM, Tela_Ferrum wrote: So that you know, it says I don't have permission to acess either of your files. Is there somewhere else you could host them?

crap, sorry. you should be able to get them from here

http://chadicus.free../newgroundshelp.html


7.

None

Topic: hit detection problem

Posted: 11/06/05 12:44 AM

Forum: Flash

ok, i'm using flash 5.

this is the very beggining stages of a game, trying to get the hit detection for walking around and what not working. but objects sometimes randomly can still move through walls. if anyone could help me out that would be rad.

here's what i have.

in the frame, the only code is:

_root.wallcount=0;
stop ();

the walls are simplys squares/rectangels. make as many as you want, dont name them, their script is simply:

onClipEvent(load) {
_root.wallcount++;
this._name=_root.wallcount;
}

your character who is controlld by the arrow keys should be a square with this script and be named "c":

onClipEvent(load) {
this.speed=5;

}

onClipEvent(enterFrame) {
if(Key.isDown(Key.RIGHT)) {this.xmove+=this.speed};
if(Key.isDown(Key.LEFT)) {this.xmove-=this.speed};
if(Key.isDown(Key.DOWN)) {this.ymove+=this.speed};
if(Key.isDown(Key.UP)) {this.ymove-=this.speed};
this._x+=this.xmove;
this._y+=this.ymove;
for(i=0;i<=_root.wallcount;i++) {
if(Math.abs(this._X-_root[i]._x)<(this._wi
dth/2+_root[i]._width/2)) {
if(Math.abs(this._y-_root[i]._y)<(this._he
ight/2+_root[i]._height/2)) {
if(Math.abs(this._X-this.xmove-_root[i]._x
)>=(this._width/2+_root[i]._width/2) and Math.abs(this._y-_root[i]._y)<(this._heigh
t/2+_root[i]._height/2)) {
this._x-=this.xmove;
this.dif=Math.abs(this._X-_root[i]._x)-(th
is._width/2+_root[i]._width/2);
if(this.xmove>0) {this._x+=this.dif};
if(this.xmove<0) {this._x-=this.dif-.03};
} else {
this._y-=this.ymove;
this.dif=Math.abs(this._y-_root[i]._y)-(th
is._height/2+_root[i]._height/2);
if(this.ymove>0) {this._y+=this.dif};
if(this.ymove<0) {this._y-=this.dif-.03};
}
_root.box._rotation+=5;
}
}
}
this.xmove=0;
this.ymove=0;

}

and finaly an "enemy" that follows the player. should be a square with this script:

onClipEvent(load) {
this.speed=3;

}

onClipEvent(enterFrame) {
this.xd=this._X-_root.c._x;
this.yd=this._y-_root.c._y;
this.h=Math.sqrt(((this._X-_root.c._x)*(th
is._X-_root.c._x))+((this._y-_root.c._y)*(
this._y-_root.c._y)));
this.xmove=this.xd*(this.speed/this.h)*-1;
this.ymove=this.yd*(this.speed/this.h)*-1;
this._x+=this.xmove;
this._y+=this.ymove;
for(i=0;i<=_root.wallcount;i++) {
if(Math.abs(this._X-_root[i]._x)<(this._wi
dth/2+_root[i]._width/2)) {
if(Math.abs(this._y-_root[i]._y)<(this._he
ight/2+_root[i]._height/2)) {
if(Math.abs(this._X-this.xmove-_root[i]._x
)>=(this._width/2+_root[i]._width/2) and Math.abs(this._y-_root[i]._y)<(this._heigh
t/2+_root[i]._height/2)) {
this._x-=this.xmove;
this.dif=Math.abs(this._X-_root[i]._x)-(th
is._width/2+_root[i]._width/2);
if(this.xmove>0) {this._x+=this.dif+.03};
if(this.xmove<0) {this._x-=this.dif-.03};
} else {
this._y-=this.ymove;
this.dif=Math.abs(this._y-_root[i]._y)-(th
is._height/2+_root[i]._height/2);
if(this.ymove>0) {this._y+=this.dif+.03};
if(this.ymove<0) {this._y-=this.dif-.03};
}
_root.box._rotation+=5;
}
}
}
this.xmove=0;
this.ymove=0;

}

or you could just download the FLA if it will let me atach it...
which it won't. rename the attached image to a .fla maybe?
nope... guess i'll just have to put it online...

get the FLA here http://chadicus.free..e.com/hitdetect2.fla

check out the SWF of what i'm talking about here. .http://chadicus.free..e.com/hitdetect2.sw
f

any help would be awesome in making these things not jump around when they touch walls, or go through the walls


8.

None

Topic: Movie Clip targeting problem

Posted: 05/30/05 05:48 AM

Forum: Flash

i can't. The movie clips are duplicated from a seperate movie clipand their names are based off of a counter to prevent duplicate names.


9.

None

Topic: Resetting Videoclips

Posted: 05/30/05 05:46 AM

Forum: Flash

yea

gotoAndPlay(X)

where X is the number of the frame you want to jump to.


10.

Questioning

Topic: Movie Clip targeting problem

Posted: 05/30/05 05:42 AM

Forum: Flash

Here's my problem.

I have a button within a movie clip. When the button is pushed and stuff happens, and one of the things that needs to happen last is that it removeMovieClips the movie clip that the button resides in.

usually i would just do _root.movieclipname.removeMovieClip();

but the problem is that the movie clip itslef is a duplicate move clip so i don't know the name of the movie clip.

is there some way to automaticaly target the MC that the button resides in? some sort of bread crumb thing like how in DOS .. will always be the parent directory to the one you are in.

any help would be apreciated.


11.

None

Topic: seperated lovers on the portal

Posted: 01/02/03 01:21 PM

Forum: General

not crazy, easily amused.


12.

None

Topic: Hey Newb (Wiccan_Woman)

Posted: 01/02/03 12:18 PM

Forum: General

I'm pretty sure that even according to wicca a male witch is a warlock.


13.

None

Topic: I was really hoping for more

Posted: 01/02/03 12:07 PM

Forum: General

than this:

I was really hoping for more


14.

None

Topic: need a name for a race!

Posted: 01/02/03 10:53 AM

Forum: General

smurfs
martians
snorks


15.

None

Topic: Clock = suicide

Posted: 01/02/03 10:00 AM

Forum: General

At 1/2/03 09:10 AM, pewp wrote:
At 1/2/03 09:07 AM, alexsmolik wrote:
At 1/2/03 09:06 AM, pewp wrote: haha, do you know how fewelish you sound? I bet in a year, you'll say, "goddamn. I was such an idiot".
lol why is that pewp ?
Because look at how silly he sounds. He's getting all pissed about movies he CHOSE to view. He doesn't have to watch them if he doesn't want to. Have you noticed how every n00g bothers to review each TrickyClown movie and give it 0s? If it gets blammed, their reviews will get deleted anyway. hahahh

Not really... he probably came here to watch funny movies, not the same movie over and over. it's not like theres a way to determine if it's a tricky movie before he watches it. and since he apparently doesn't find tricky funny, then he has a right to be annoyed because someone has wasted his time that could have been spent watching stuff that was funny.


16.

None

Topic: FOR FUCK'S SAKE!!!

Posted: 01/02/03 09:29 AM

Forum: General

Yesterday when it was just the same exact flash being submitted it was annoying. some of the new ones that have stuff leading up to tricky are pretty funny.


17.

None

Topic: OrangeClock's N

Posted: 01/02/03 07:46 AM

Forum: General

Not really a fan of tricky clown, but that movie was awesome. Hopefully he finnished the closer portion.


18.

None

Topic: seperated lovers on the portal

Posted: 01/02/03 05:21 AM

Forum: General

sometimes when i'm at the portal i like to pretend that the little flash files running around on the top are people. lovers who have been seperated, and one just came home on the bus. and they run towards eachother eager to embrace after a long time of waiting. but i'm in the bushes across the street. and just as they are about to feel the touch they have yearned for for months. *crack* a gunshot rings out and they die inches from what they were waiting for.


19.

None

Topic: HIT DETECTION

Posted: 08/11/02 12:43 AM

Forum: General

At 8/10/02 11:08 PM, Dean_Demon wrote: This whole hit detection thing is really buggin' me. I've almost got this cool side scrolling, Demonic Goat type game going, it's just I dont' know how to do hit detection. Someone please tell me how to do the whole hit detection thing between two movie clips. One movie clip is an energy blast, and the other is an enemy that will die upon making contact with it. I already know the Script for the enemy:

onClipEvent (enterFrame) {
if (this.hitTest(_root.two)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}

If anyone can tell me how to do the rest of this hit detection stuff, I'd be delighted. Thx.



1st of this should be in the flash help forum.

2nd you really need to give more information if you expect any help. the code you gave will work fine detecting whenever the clip you put the code in collides with _root.two


20.

None

Topic: JAPAN SUCKS

Posted: 08/07/02 11:18 PM

Forum: General

Deaths due to the Rape of Nanking
300,000

Deaths due to Chinese Comunist party under Mao Zedong
35,000,000 - 65,000,000 (depending on who you ask)

China definently doesn't have a sterling reputation and has no room to bitch. How about the Genocide in Tibet?


21.

None

Topic: I hate this world

Posted: 08/07/02 10:09 PM

Forum: General

Me too, I hate humankind. Not just because of their idiocy, but because they abuse power, and slaughter each other. We humans are no better than swine, dogs, scum. Despite all we say about ourselves as an organism that is who we all are.

You're delusional. Humanity needs idiots, power abusers, slaughter, pain, suffering and all that good stuff to survive. Without it the world would be a very boring place. You just have to apreciate the beauty of it all.


22.

None

Topic: getting weird emails again...

Posted: 08/06/02 07:46 PM

Forum: General

At 8/6/02 12:39 PM, TuRkEy_2002 wrote: ive been gettin sum emails that r from ppl in afganistan askin me 2 let them move in wid me!!! and askin me 2 let them use my bank account to trance fer $48,000,000 or some thin like that!

Dude, what are you? Some kind of un-caring bastard. Geesh, they're just poor refugees that want to start a better life. Have a heart man.


23.

None

Topic: BUNGLED GIRL!!!!

Posted: 08/06/02 05:07 PM

Forum: General

At 8/6/02 11:40 AM, Ogre_X wrote: what is up with that gurl??????? why do you wanna draw here??????why are you guys all defending hear???????????????i realy cant believe how pethetic you guys are

I really can't bellieve how you failed to spell 'her' correctly twice in one post.


24.

None

Topic: HTML TEST

Posted: 08/06/02 01:28 AM

Forum: General

Nothing says pro like the marquee tag.


25.

None

Topic: The Anti Ogre_X Barmy Army

Posted: 08/05/02 07:16 PM

Forum: General

1) Insult Ogre_X at all times and make him cry!

I love how you are using Ogre_x as a scapegoat for your failed army. He was just uphoalding the retarded ideals YOU put forth. Granted he is an illiterate idiot, but he did what you told him to do.

2) Fight against crime on newgrounds

Do you guys get to wear capes? Because if you do you might get some members.

3) Spread the truth of that Flash is the way of the future

I could get behind that. When i look into the future i totaly see everything being in flash. we'll drive flash cars to work (which is in a flash building) and eat flash food. Just about everything will be done in flash.

4) Help all make good flash films always and 4 ever so that there will be less crap in the portal.

Judging by your movie i don't think too many people would benefit from your help.

5) Attack people like ogre_x who just insult anyone and everyone

See 1)


26.

None

Topic: "THE FELLOWSHIP OF THE PORTAL"

Posted: 08/05/02 05:46 PM

Forum: General

At 8/5/02 04:37 PM, DingleberryClock wrote:
At 8/5/02 09:20 AM, ManWithTheGoldenGun wrote:
At 8/5/02 09:11 AM, DingleberryClock wrote:
At 8/5/02 09:08 AM, ManWithTheGoldenGun wrote:
At 8/5/02 08:56 AM, CakerX wrote: WHAT THE FUCK!?!?!?!?!

Why do you fuckheads keep debating who is king dork. Its quiet obvious since this is an internet culture that their are none of any so called "eliete" social people here. And even if they where, WHO CARES, most of thoose so called "eliete" dumb fucks who worship whatever the boogyman on MTV tells them to. THAT GOES FOR ALL OF YOU POP-METAL-SO-CALLED-GOTHS/PUNKS TOO. For fucks sake, the internet was started by geeks for geeks, so take all your "coolness" pissing wars back to middle school.

As for all theese fucking so called "armies". You are no fucking better, just like the skinhead culture, you are fucking stupid. You have little to contribute, but lots to blam.

Fuck, I think I am going crack open a nice cold beer to sit down next to dingleberry clock as he destroys the portal. Then watch all you little prissies bitch and moan back and forth about it.

FUCK YOU ALL.
What the fuck, is your problem? You have some serious issues. I bet you have no friends, and have plans to shoot up something. You sound like a fucking psycho.
And you sound like a fucking retard!
For your information, I have an I.Q. of 160. And CakerX is a psycho.
So? That doesn't make you any less of a retard. And it most definitely doesn't make you sound like any less of a retard.

Stephen Hawking, the greatest living mind in the world, only has an I.Q. of something like 110, but he's still a genius. Your I.Q. means absolutely nothing, it is just a measurment of your memory. It tests how well you can receit programmed, or brainwashed, data.

Actually IQ tests don't really have that much to do with memory. you will never find any type of history questions on an IQ test. They are more about judging how quickly you think, with questions like

bob is taller than joe, joe is shorter then sam, fred is not as tall as joe, jeff is taller than sam but not as tall as joe. who is the second shortest?

can a square with 5' sides always fit within a circle with a 5' radius?

how many letters are in this question?

They are always times and you get your score, by comparing the number of right questions to your time or something.

I agree that having a high IQ doesn't make you smart. and if GoldenGun really has a 160 IQ it seems apparant that it doesn't help in comming up with witty retorts...


27.

None

Topic: screw the crews join the barmy army

Posted: 08/05/02 04:19 PM

Forum: General

At 8/2/02 10:29 AM, RoyalRuss wrote: i decided that if there are going to be a load of shitty crew's why not have a barmy army!
this army will fight war's against anything and everything if you like blamn crews then ask for an anim to be blamned and the army will get to it if you want help with people who are pissing you off I.E crapclock then the barmy army will help you with the insulting.
As member 01 i declare mob rules so join the barmy army now! your portal need you!

This whole ordeal was retarded. You claim to be a crew that insults people, yet when people start railing on you you start begging for peace. Then you blame your club going to shit because the members made enemies and insulted people, but that was the fucking point of the army. Maybe you would have done better if you had imposed a literacy screening on prospective members...


28.

None

Topic: QUIET

Posted: 08/05/02 03:09 AM

Forum: General

I heard there's a hidden room in the back full of porn.


29.

None

Topic: Long Distance

Posted: 08/05/02 02:59 AM

Forum: General

At 8/4/02 10:42 PM, pimpinthief wrote: FUCK! Just when I meet a really cool girl I could relate with on my cruise I just took... I learned that she fucking lives in Chicago, while I live in Houston! GODDAMMIT! Of all the luck... oh well... :(

Track her down and kidnap her.


30.

None

Topic: weird NG dream...

Posted: 08/05/02 02:41 AM

Forum: General

the other night i chewed my toungue off in a dream.


All times are Eastern Daylight Time (GMT -4) | Current Time: 01:46 AM

<< < > >>

Viewing 1-30 of 70 matches. 1 | 2 | 3