Anybody else notice the flash file on the Tool Band's index page? It is quite cool both in design and code.
Check it out: toolband.com
Anybody else notice the flash file on the Tool Band's index page? It is quite cool both in design and code.
Check it out: toolband.com
At 11/9/06 02:41 AM, DingoEatingFuzz wrote: Anybody else notice the flash file on the Tool Band's index page? It is quite cool both in design and code.
Check it out: toolband.com
Nice find, though I would like to be able to change the quality and maybe zoom in.
At 11/9/06 02:49 AM, PaperBagMask wrote: Nice find, though I would like to be able to change the quality and maybe zoom in.
Thanks. Those same things pressed my buttons also. There really isn't a need for the standard website visitor to change the quality or zoom in though, so it isn't as much a flaw as it is an annoyance to us who want to observe it more closely :(
At 11/9/06 02:53 AM, DingoEatingFuzz wrote: Thanks. Those same things pressed my buttons also. There really isn't a need for the standard website visitor to change the quality or zoom in though, so it isn't as much a flaw as it is an annoyance to us who want to observe it more closely :(
If anything the quality is what I want most because it lags up my computer and mines is decent too, plus a lot of other people probably have shitter computers which will lag till it blows up!
At 11/9/06 02:12 AM, Cybex wrote: I've always wanted to try drunk isketch myself/ See if you can hide the fact you're drunk from the other people.
dunno what iSketch is, so I googled it, adn I assume your tking about the online fersion of piciontary.
I played it, ti was really fun, I walways really liked pictionary. non e thogh it I was rdunk.
At 11/9/06 03:13 AM, orb wrote: dunno what iSketch is, so I googled it, adn I assume your tking about the online fersion of piciontary.
I played it, ti was really fun, I walways really liked pictionary. non e thogh it I was rdunk.
There was a large game(ten people!) of it a few days ago, but the post for it is lost among the vast sea of The Flash 'Reg' Lounge.
Sorry for the double post but does anyone have the SWF of Red Baron?
I can't load it properly and the only way for me to view it is to download it because my internet has been slow recently.
If you've already viewed it on Newgrounds then open up your temporary internet files and search for an swf named 347399_RedBaronFinal.swf and copy and paste it to another folder, PM me and I'll send you my e-mail address to send it to.
At 11/9/06 03:30 AM, PaperBagMask wrote: open up your temporary internet files
Some of us use firefox nub :P just kidding.
Lol you mean 10 NG users on SKetchup? cause 10 people in a game isn't that rare lol ther were like 7 in my game.
once i had to draw pea so I drew a penis and said it sounded like the first two letter LOL
I dont know what others think, But i think we should change the Administrative review thing.
My Ideas are, you can blow the whistle, but it doesnt disappear forever. Make it they cant get an award for the day, but its still viewable, and then if its cleared, make it like re-submit with an auto staff note saying, NOT STOLEN! Probs fixed :)
I was through a huge review, then it said it was up for administrative review...
At 11/9/06 03:37 AM, JackCurrie wrote: I dont know what others think, But i think we should change the Administrative review thing.
My Ideas are, you can blow the whistle, but it doesnt disappear forever. Make it they cant get an award for the day, but its still viewable, and then if its cleared, make it like re-submit with an auto staff note saying, NOT STOLEN! Probs fixed :)
I was through a huge review, then it said it was up for administrative review...
NO. Having them not get an award would be the stupidest thing EVER. Think about it: When Weebl first submitted Badger ver1 and liike 500 ppl whistled it, it wouldn't've been fair to not give it any awards cause rtetards thought it wasn't the real tauthor. I think teh way it is right now is completely fine.
At 11/9/06 03:34 AM, orb wrote: Some of us use firefox nub :P just kidding.
I use FireFox too but I'm used to calling it that due to my long exposure of Internet Explorer.
At 11/9/06 06:24 AM, CitricSquid wrote: As this place is full of awesome flash'ers, think we would be able to pull off making a NG version of isketch? That would be awesome.
That'd be tough though considerig the online part, or at least I think it would be...
At 11/9/06 06:39 AM, PaperBagMask wrote: That'd be tough though considerig the online part, or at least I think it would be...
it's not as hard as you'd think. that idea sounds cool squidface, i wish i was good at actionscript so i could help, but my art skills are somewhat available when i can get on the computer :X
what all were you thinking? lets hear some details :P
I know one thing that can make this version of iSketch, or whatever you wanna call it, to be a lot more appealing...
GOOD QUALITY FLASH INTRO!!!
The iSketch one reeks of noob and bad tweens.
Anime's gotten really cliché because of that. And i agree with Johnny, Crouching tiger, hidden dragon was a totally boring movie. The only good anime out there is probably Agent Aika (look it up on youtube) It's got a nice story too. Altough i don't have it on any channels down here. -_-'
But yeah.... I'm not gonna resort to those cliché moves. :D Whats gonna be commpletely hard to do, will be the background moves necessary in a few of the scenes. D:
i know this isnt cool, and i wont do this again, but, i finally got around to trying inverse kinematics(at least i think thats what this is). im in school and i made this code out of boredom. and im pleased with it. if lose it i ill be too lazy to do it again. and i forgot my jump drive . so im gonna put the code up here do i can copy paste at home. i wont make a habit of this.
var pointList:Array = new Array(20);
var pointLength:Number = 5;
var gravity:Number = 5;
var friction:Number = .5;
var oldx:Number;
var oldy:Number;
var xd:Number;
var yd:Number;
var d:Number;
for (var i = 0; i<pointList.length; i++) {
pointList[i] = {x:_xmouse, y:_ymouse, xv:0, yv:0};
}
onEnterFrame = function () {
this.createEmptyMovieClip("string", 0);
string.lineStyle(2, 0, 100);
for (var i = 0; i<pointList.length; i++) {
var p:Object = pointList[i];
var p2:Object = pointList[i-1];
if (i == 0) {
p.x = _xmouse;
p.y = _ymouse;
string.moveTo(p.x, p.y);
continue;
}
p.xv *= friction;
p.yv *= friction;
oldx = p.x;
oldy = p.y;
p.x += p.xv;
p.y += gravity+p.yv;
xd = p.x-p2.x;
yd = p.y-p2.y;
d = Math.sqrt(xd*xd+yd*yd);
if (oldx == p2.x && oldy == p2.y) {
p.x = p2.x+pointLength;
p.y = p2.y;
} else {
p.x = p2.x+(xd/d*pointLength);
p.y = p2.y+(yd/d*pointLength);
}
p.xv = p.x-oldx;
p.yv = p.y-oldy;
string.lineTo(p.x, p.y);
}
};
each point has momentum. no tuts, im so happy i finally did this
Online NG version of iSketch=great idea.
HOWEVER, idea of having a lot of us work on it = horrible idea.
It's like mostly AS and API... there's not much work to be done graphics wise besides like the GUI and opening intro and menu....
BTW LET'S TOTALLY ALL JOIN ONE ROOM SOME TIME LATER TODAY I WANT TO PLAY WITH YOU GUYS LOL
everyone knows that isketch is only fun when i put it together.. nobody has the power to pull well known ng people like i can. I only do it on fridays and occasional sunday.
-L
None
At 11/9/06 10:53 AM, Luis wrote: everyone knows that isketch is only fun when i put it together.. nobody has the power to pull well known ng people like i can. I only do it on fridays and occasional sunday.
Ah, what're you doin', ya blowhard? Is today another 'break day'? :P
Sorry for posting this again, but i really need some help :(.
Okay, here's my problem. I'm setting up a level system, where when a user dies, it raises a var called 'killCount' once. Once it reaches a point equal to a variable in my level array, it will play an aniamtion and add 0.01 to killCount to stop it from looping.
This works fine for the first number in the array, but it won't play if it reaches the second + point. Here's the code, can anyone see why i'm having problems?Thanks in advance everyone :).
levelUp._visible = false;
killCount = 0;
level = 1;
var levelArray:Array = new Array(10, 20.01, 30.02, 45.03, 60.04, 80.05, 100.06, 120.07, 150.08, 170.09, 200.1, 230.11, 260.12, 300.13, 340.14, 400.15, 450.16, 460.17, 480.18, 500.19);
btn1.onPress = function() {
_root.killCount++;
trace(_root.killCount);
};
onEnterFrame = function () {
for (i=0; i<20; i++) {
if (killCount == levelArray[i]) {
trace("pie");
trace("Hi");
level += 1;
levelUp._visible = true;
levelUp.play();
killCount += 0.01;
}
}
};
I bet it's something simple right?
At 11/9/06 10:53 AM, Luis wrote: everyone knows that isketch is only fun when i put it together.. nobody has the power to pull well known ng people like i can. I only do it on fridays and occasional sunday.
-L
Lol no saturday?
Well then do it this sunday. Friday i have a 6 hour grueling day and I never sleep thursday night... so as soon as my classes are done I'll probably be sleeping.
Ah who am I kidding. I never sleep early on friday even though I should since I'm so tired.
Yeah, let's do it tomorrow. ORGANIZE IT LUIS KTHXBAI
At 11/9/06 10:53 AM, Luis wrote: everyone knows that isketch is only fun when i put it together.. nobody has the power to pull well known ng people like i can. I only do it on fridays and occasional sunday.
Afro-Ninja also puts together a pretty good iSketch game. Try to ask him next time. He was organizing games on Sunday, but I'm not sure what happened to that.
Hmpfph!
Today at school i went for a piss came out and there was a teacher out side and he stopped everyone that came out the loo (ablout 6 of us). And said "one of you have been smoking". So he took all our names down, This fucking sucks, if i get done for it my chances of getting in the 6th form will be slim! Plus it wasnt me smoking.
At 11/9/06 12:01 PM, fuzz wrote: Today at school i went for a piss came out and there was a teacher out side and he stopped everyone that came out the loo (ablout 6 of us). And said "one of you have been smoking". So he took all our names down, This fucking sucks, if i get done for it my chances of getting in the 6th form will be slim! Plus it wasnt me smoking.
That does suck. But you should probably try not to associate yourself with people who are going to smoke on school grounds if you don't want to get in trouble...
At 11/9/06 12:04 PM, DFox wrote: That does suck. But you should probably try not to associate yourself with people who are going to smoke on school grounds if you don't want to get in trouble...
I dont, they just happend to be in the toilets at the same time as me, smoking in one of the cubicles i think. I didnt even notice until the teacher said it stinks of smoke.
At 11/9/06 11:25 AM, Depredation wrote: code help
i dont see a stop() on there. how can it start playing on the second level when his hasnt stopped? is there a stop on the frame inside the movieClip?
i think you need to change the methods, there are easier ways to do this. i dont think i need to explain this code to you.
levelUp._visible = false;
killCount = 0;
level = 1;
newLevel = false;
btn1.onPress = function() {
_root.killCount++;
trace(_root.killCount);
newLevel = true;
};
onEnterFrame = function () {
if (killCount % 10 == 0 && killCount > 0 && newLevel) {
newLevel = false;
trace("pie");
trace("Hi");
level += 1;
levelUp._visible = true;
levelUp.play();
}
};
At 11/9/06 12:07 PM, fuzz wrote:At 11/9/06 12:04 PM, DFox wrote: That does suck. But you should probably try not to associate yourself with people who are going to smoke on school grounds if you don't want to get in trouble...I dont, they just happend to be in the toilets at the same time as me, smoking in one of the cubicles i think. I didnt even notice until the teacher said it stinks of smoke.
Tell that fucker HE HAS NO FUCKING RIGHT. Seriously he can't write you up for it or whatever unless he can prove you did it. Which is impossible considering you didn't do it.
At 11/9/06 01:51 PM, orb wrote: Tell that fucker HE HAS NO FUCKING RIGHT. Seriously he can't write you up for it or whatever unless he can prove you did it. Which is impossible considering you didn't do it.
ive seen people get written up with way less proof.
None