The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.39 / 5.00 38,635 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.09 / 5.00 15,161 ViewsAt 2/6/08 04:14 AM, The-real-iceman wrote:
1. whats the framerate 2. whats the deadline
1: 30 FPS.
2: 2009.
At 2/5/08 11:40 PM, Five3 wrote:
:in a classroom or school enviorment and don't mind sharing it with me, It'd be greatly appreciated.
I would be glad to help you, but you need to be more specific.
At 2/3/08 02:50 PM, TheBoogley wrote: IT'S UP!! I uploaded it at 2:45pm Newgrounds time! HERE WE GO!!
AWESOME!
Happy Birthday, Atomic Noodle!
Here have a slice of my chocolate cake with smarties:
At 1/30/08 09:08 AM, Darkaxl wrote:At 1/29/08 08:06 PM, Revolation wrote:Cause he's black? Racist =[At 1/29/08 06:24 PM, JesusCanHardFlip wrote: Yeah working on this at the moment for my brother, hope ya like!wow thats great. reminds minds me of mindchamber for some reason.
Stop being so fucking sensitive.. Along with saying it reminds him of MindChamber he also said "That's great."
Is this ear height good?
At 1/30/08 02:31 PM, High-off-cheese wrote: the shading looks a little weird to, how about some more detailed shading?
I am not so experienced with that.
At 1/30/08 02:22 PM, l-minus-l wrote: ears line up with the eyebrow and nose, not the nose and mouth
Like this?
At 1/30/08 09:18 AM, Gatling wrote:At 1/27/08 06:44 AM, GrayJovial wrote: Update to my part. (My name on the top middle of the movie changed its size after the interior scene of the plane so i changed that in this .Fla file.)It's good especially the explosion. The only thing you have to change is the plane falling down. It needs to be faster!
See the change of my name in my part here.
I could have done that, but I would have to change a lot. I'm not so interested in doing that :P. Thanks for the comment, by the way.
At 1/29/08 04:31 PM, physco-pickle wrote: I like the rain, only because I like to run in it, it keeps you from getting hot. Does that still make me an emo?
Your sig is smokin hot!
At 1/29/08 04:11 PM, High-off-cheese wrote:At 1/29/08 04:09 PM, GrayJovial wrote:dude I was kidding, calm down
I thought you were serious about that. Bah, never mind. It's ok.
At 1/29/08 04:08 PM, High-off-cheese wrote:At 1/29/08 04:05 PM, GrayJovial wrote: Make me a idiot. Please?done
Fuck you. I bet you're a fat 12 year old who don't dare to show your picture on boards. Thats why you mock me.
At 1/29/08 09:30 AM, Burlz wrote: Hi, I am one of the co-owners of the website www.nothingtodo.co.uk and am looking for people who want to host content on our site.
If anyone is interested please get back to me either here or by emailing us at: nothingtodocontact@googlemail.com
Thanks
Tom
What's in it for us?
$$$
At 1/28/08 04:53 PM, G-forcev2 wrote: Made my parts do something :D.
Ze monkay.
Preview
Fla
Pixal Guy.
Preview
Fla
Thats creative, it looks very nice too, in my opinion.
At 1/27/08 01:47 PM, frogcommando wrote: audacity? free? i like the sound of that.
btw, thanks guys. i think this is all that i need for now. so helpful. lol.
Goldwave is also great.
When you have a mic.
At 1/27/08 02:34 PM, AcidSoldier wrote: That's pretty awesome.
I agree. The overall design was great too.
At 1/27/08 12:54 PM, S0ulSlay3r wrote: hello everyone i just got back into flash and my friend found something that was like madness but it was called radness has anyone else heard of these???
No. Were you with him when he found this so called "Radness"? Sounds something stupiditly made up.
At 1/27/08 06:09 AM, TheBoogley wrote: Oh yes! I'm back from the country, and you guys haven't let me down! GreyJovial, that's so in you'd never get it out again.
Thanks alot!
There is also KoolMoves.
Update to my part. (My name on the top middle of the movie changed its size after the interior scene of the plane so i changed that in this .Fla file.)
See the change of my name in my part here.
At 1/27/08 05:02 AM, Vincoid wrote: Yes, nice ;)
I think that'll do.
Glad you liked it, :). Here is the .Fla file.
At 1/27/08 04:23 AM, Healthy wrote: Hey did you get that code from Pyroflame? Just wondering alright bye.
No.
At 1/26/08 09:08 PM, El-Presidente wrote:
:You got lucky so I'm suspecting because 0e is not a Flash function it was automatically made into a 0. Lucky you because you wrote "grav > 0e". Just to warn you about those, and getting rid of "this."s makes it a bit quicker, or so I've read.
Alright, thanks for the heads up.
At 1/26/08 07:57 PM, GlowingMonkey wrote: It should work. I think I know what you have done wrong. Double click at the character symbol. Do you see a little x or a + somewhere? Change the position of the x/+, so that the feet of the character are at the same place of it. Does it work?
Yes, it works! Thank you very much.
onClipEvent (load) {
var grav:Number = 0;
var wlk:Number = 5;
var speed:Number = wlk;
var jumpHeight:Number = 12;
var dbl:Number = 10;
var djump:Boolean = false;
var scale:Number = _xscale;
var ex:Number = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y += grav;
speed = 5;
while (_root.ground.hitTest(_x, _y, true)) {
djump = false;
_y--;
grav = 0;
}
if (Key.isDown(Key.RIGHT)) {
_x += speed;
_xscale = scale;
if (_root.ground.hitTest(_x, _y+3, true)) {
this.gotoAndStop(1);
} else {
if (djump == false) {
this.gotoAndStop(2);
}
}
} else if (Key.isDown(Key.LEFT)) {
_x -= speed;
_xscale = -scale;
if (_root.ground.hitTest(_x, _y+3, true)) {
this.gotoAndStop(1);
} else {
if (djump == false) {
this.gotoAndStop(2);
}
}
} else {
if (_root.ground.hitTest(_x, _y+3, true) && !Key.isDown(68) && !Key.isDown(83)) {
this.gotoAndStop(2);
}
}
if (Key.isDown(Key.UP) && _root.ground.hitTest(_x, _y+3, true)) {
grav = -jumpHeight;
_y -= 4;
this.gotoAndStop(4);
} else if (Key.isDown(Key.UP) && djump == false && grav>0e) {
grav = -dbl;
djump = true;
this.gotoAndStop(3);
}
}
This is the script i put on my character. The instance ground I have made for my game wont work! I gave the ground the instance "ground" too.
Here is what happens:
http://www.swfupload.com/view/117809.htm
Could someone help me?
At 1/26/08 03:47 PM, thedo12 wrote: you shouldnt make a tutorial about something you cant do yourself
exactly.
Anyone ordered a sober pencil?
At 1/26/08 10:45 AM, Evion wrote: Like I said you could have his eyes widen in shock after the mouth is erased or you could even make him cry :D
Good idea, but it's not real convenient for me since I suck at drawing tears.