Be a Supporter!
Response to: is this a good movie Idea? Posted June 5th, 2004 in Game Development

it wont work. especially if its sticks. and GTA ripoffs arent gonna score well unless they are incredible.

Response to: Automatic Sound-Reactivity Posted June 5th, 2004 in Game Development

i dont think anyone is gonna answer that positively, becuase it simply doesnt exist. ive looked everywhere for it, and i cant find it either. so many posers just make tweened bars and say its sound reactive.

Response to: Newground Artist showcase thread Posted June 5th, 2004 in Game Development

At 6/5/04 12:49 AM, cook_er wrote: Good ol' Sherbs. If Sherbs were ever to be a demon kitty, it would maybe look like this...

hahah, i love the style of that

Response to: Movie Clip Question Posted June 5th, 2004 in Game Development

im afraid there is no way that i know of, but if that was possible... it would lag flash to the point that it may freeze >_<

Response to: Best. Joke. Evar. Posted June 5th, 2004 in General

At 6/4/04 02:58 PM, thecolony wrote: The best jokes in the word are absurd ones...

some funny shit?

Response to: - -The API thread- - Posted June 4th, 2004 in Game Development

l = 300;
e = 100;
function makep() {
if (!Key.isDown(Key.SPACE)) {
Pook = createEmptyMovieClip("p"+c, c--);
Pook.lineStyle(random(10), colors[random(n)],(random(100)));
Pook.lineTo(l, -3);
Pook.curveTo(e, -e);
colors = [0xAE973C, 0xA28C33, 0x7E6D2C];
n = colors.length;
Pook._y + 1;
Pook._x = 280;
Pook.onEnterFrame = function() {
if (!Key.isDown(Key.SPACE)) {
this._y += 10;
this._rotation = Math.atan2(this._y-_ymouse, this._x-_xmouse)*(180/Math.PI);
this._alpha -= 2.1;
this._xscale-= 1;
if (this._y<=600) {
removeMovieClip(this);
}
}
};
}
}
setInterval(makep, 10);

put that in, and use a brown background.

its mouse interactive.

Response to: Newground Artist showcase thread Posted June 4th, 2004 in Game Development

Heres the link http://www.newgrounds.com/ngmag/alphas/alpha/57

Yup two more weeks and then i work some more.And if anyone has a kick ass song i could use, please tell me what it is cuz im pretty desperate!

yeah, -pako- i like your demo... and i love -Sqeezy-'s style... but dont copy it too much, ok?

Response to: Help with Falsh on NG Posted June 4th, 2004 in Game Development

rephrase the question.... i dont understand

Response to: - -The API thread- - Posted June 4th, 2004 in Game Development

api is the drawing application in flash, its only with code.

BUMP

Response to: helloo i need to talk to someone Posted May 31st, 2004 in Game Development

schoror, something funny.... u have 1,337 posts. thats leet man. very leet.

Response to: Actionscript codes here! Posted May 31st, 2004 in Game Development

At 5/31/04 06:27 PM, InonI wrote:
At 5/31/04 06:20 PM, Residentevilfan2003 wrote: please help i am in desperate need of trouble
i'll give ya some trouble

LMAO! Man, Residentevilfan2003 sucks at speaking.

Response to: i need voice actors Posted May 31st, 2004 in Game Development

getting a voice actor is very difficult on ng, try getting a friend or ur dad/mom or something. if ur voice is too high or young, ur out of luck

Response to: Neo vs Smith (stick movie) Posted May 31st, 2004 in Game Development

At 5/31/04 07:05 PM, -azrag- wrote: Ya im making a new movie. Its called neo vs smith. Its a matrix ripoff basicly and its gonna have stick charactors in and they are gonna be fighting near a computer system and neo has to destroy the computer aka "matrix". Intersting movie so far.

ya no one cares.

Response to: Newground Artist showcase thread Posted May 31st, 2004 in Game Development

At 5/31/04 07:03 PM, Fifteenbellyrolls wrote: Thanks for hurting my computer Norwegian

God, as soon as I clicked on that link tons of pop-ups and security windows opened up, I eventually had to close my internet to stop my computer from crashing.

I hope your happy.

thanks 15, i was like, one second away from clicking that link. it looked so interesting. and norweigian, please change the address of the link plz.

Response to: Need help Posted May 31st, 2004 in Game Development

... wtf did u just say?

Response to: Which Program Do You Use? Posted May 31st, 2004 in Game Development

umm, yes. that is the program they use to make EVERY cartoon on here. and, P.S. are you retarded?

Response to: Sounds coming too early Posted May 31st, 2004 in Game Development

i experience the same problem. >:(

Response to: Newground Artist showcase thread Posted May 31st, 2004 in Game Development

J-O-K-E. you know what that spells?

Response to: helloo i need to talk to someone Posted May 31st, 2004 in Game Development

what you are trying to do is impossible in the world of flash, you really need to be an A+ programmer and you have to have a degree in like everything. I know there is webcam compatability in flash, but none of that sort.

Response to: Newground Artist showcase thread Posted May 31st, 2004 in Game Development

i drew this in 2 minutes

Newground Artist showcase thread

Response to: - -The API thread- - Posted May 31st, 2004 in Game Development

put this code in:

background:black
FPS:120
normal window size.
quality = medium (already)

_quality = "medium";
d = 0;
rot = 0;
rc = 5;
function boxtunnel() {
if(d==400){
d = 0;
}
d++;
rot += rc;
if (random(30) == 0) {
rc = --rc;
}
box = _root.createEmptyMovieClip("box"+d, d);
r = Math.floor(Math.sin(d/255*2*Math.PI)*255);
g = Math.ceil(Math.sin(+d*255*2*Math.PI)*255);
b = Math.floor(Math.sin(d+255*2*Math.PI)*Math.sin(d/255*2*Math.PI)*255);
hex = r << 0 | g << 0 | b;
with (box) {
_alpha = 0;
_rotation = rot;
_x = 250;
_y = 300;
lineStyle(100, hex, 50);
moveTo(-50, -50);
lineTo(50, -50);
lineTo(50, 50);
lineTo(-50, 50);
lineTo(-50, -50);
_xscale = .01;
_yscale = .01;
box.onEnterFrame = function() {
_rotation += _root.rc;
_alpha = random(100);
_xscale *= 1.2;
_yscale *= 1.2;
offset = 5;
xoff = Math.cos(_rotation/(Math.PI/180)) * offset;
yoff = Math.sin(_rotation*(Math.PI/180)) * offset;
_x += xoff;
_y += yoff;
_alpha = _xscale+30;
if (_xscale>2000) {
removeMovieClip(this);
}
};
}
}
setInterval(boxtunnel, 1);

this code freaked me out.

Response to: Newground Artist showcase thread Posted May 31st, 2004 in Game Development

At 5/31/04 09:34 AM, Sneakers wrote: Mr. Zombie butt

HAHA! that is great.

Response to: - -The API thread- - Posted May 31st, 2004 in Game Development

this code is a variation of _burst_'s code, it makes random colors, and eventually starts spinning really quick, making an awesome star pattern

Background:BLACK (or a color changing one with a mc)
Fps: 40 (preferably)

_quality = "high";
d = 0;
rot = 0;
rc = 5;
function boxtunnel() {
if(d==400){
d = 0;
}
d++;
rot += rc;
if (random(30) == 0) {
rc = --rc;
}
box = _root.createEmptyMovieClip("box"+d, d);
r = Math.floor(Math.sin(d/255*2*Math.PI)*255);
g = Math.floor(Math.sin(-d*255*2*Math.PI)*255);
b = Math.floor(Math.sin(d+255*2*Math.PI)*Math.sin(d/255*2*Math.PI)*255);
hex = r << 3 | g << 8 | b;
with (box) {
_alpha = 0;
_rotation = rot;
_x = 250;
_y = 300;
lineStyle(1, hex, 100);
moveTo(-50, -50);
lineTo(50, -50);
lineTo(50, 50);
lineTo(-50, 50);
lineTo(-50, -50);
_xscale = 1;
_yscale = 1;
box.onEnterFrame = function() {
_rotation += _root.rc;
_alpha = random(100);
_xscale *= 1.2;
_yscale *= 1.2;
offset = 5;
xoff = Math.cos(_rotation*(Math.PI/180)) * offset;
yoff = Math.sin(_rotation*(Math.PI/180)) * offset;
_x += xoff;
_y += yoff;
_alpha = _xscale+30;
if (_xscale>2000) {
removeMovieClip(this);
}
};
}
}
setInterval(boxtunnel, 50);

please check this one out. watch it for about 2 minutes on Full screen to get the full effect. trust me, its cool

Response to: Newground Artist showcase thread Posted May 30th, 2004 in Game Development

ignore my other entries, im very good at animating and scripting. my msn is geier20@hotmail.com and my AIM is roseyanom.

ill be glad to help.

Response to: Newground Artist showcase thread Posted May 30th, 2004 in Game Development

At 5/30/04 10:01 PM, -Pako- wrote: Well fuck ya..

PLANTO-MAN

i love your style... make some movies with it

Response to: Actionscript codes here! Posted May 30th, 2004 in Game Development

ok, this has nothing to do with flash...

but, who is the chick in ur sig, deathcon?

Response to: Online Band Posted May 30th, 2004 in General

its a neat idea, and i would like to see it work but it probably wont. i play some guitar.

Response to: where do i lean how to make movies? Posted May 30th, 2004 in Game Development

lol

Response to: Newground Artist showcase thread Posted May 30th, 2004 in Game Development

At 5/30/04 09:21 PM, KORTEX wrote: heres a teaser poster from my movie im workin on called "dark world". i accidentally posted it in the actionscript forum. well here hope u like it.

kortex

wow, that drawing is great, on the side. what is the movie about? im excited to see it.

Response to: Actionscript codes here! Posted May 30th, 2004 in Game Development

At 5/30/04 09:13 PM, KORTEX wrote: heres another in better quality

wrong topic buddy.