The Chat Thread

Started by: Lgolos | Replies: 158,197 | Views: 12,277,685 | Sticky

Paperclip

Posts: 840
Joined: Nov 2004
Rep: 500

View Profile
Feb 14, 2012 10:48 PM #593963
I am tired of the custom weapon request thread taking up all of the attention in the original art forum.. nothing else gets any views. I say we kick them out to a different forum.
Cook

Posts: 5,155
Joined: Nov 2009
Rep: 10

View Profile
Feb 14, 2012 11:32 PM #593969
a request section, perhaps?
Ashlander
2

Posts: 1,944
Joined: Mar 2010
Rep: 10

View Profile
Feb 14, 2012 11:38 PM #593971
Nah, kick them out. Viva La Resistance!
Fusion
Banned

Posts: 4,445
Joined: Aug 2008
Rep: 10

View Profile
Feb 15, 2012 12:10 AM #593980
The mods should mass ban all of them.
Ashlander
2

Posts: 1,944
Joined: Mar 2010
Rep: 10

View Profile
Feb 15, 2012 12:35 AM #593988
Seriously. You guys dont realize how fucking hard its been to find a writer for the Merge Collab from FA. WE STILL AINT GOT ONE. And i've been actively talking to writers on FA.
Paperclip

Posts: 840
Joined: Nov 2004
Rep: 500

View Profile
Feb 15, 2012 12:52 AM #593996
So you are for a requests forum? :P
N T
2

Posts: 1,825
Joined: Oct 2008
Rep: 10

View Profile
Feb 15, 2012 1:20 AM #594005
Quote from Ashlander
Seriously. You guys dont realize how fucking hard its been to find a writer for the Merge Collab from FA. WE STILL AINT GOT ONE. And i've been actively talking to writers on FA.

I'd do it, but I find your Merge Collab boring.
And I've been both on Stickpage and Fluidanims, so it doesn't make sense.
Highly_Scented
2

Posts: 287
Joined: May 2006
Rep: 10

View Profile
Feb 15, 2012 1:45 AM #594014
There's no coding section so idk where to post this, but I made it today and I think it's cool.*

http://www.fileize.com/view/99d5a778-b4b/

This utilizes Didier Brun's bitmap Raster class.

Generated in 135 lines of code(not including the Raster class)

import com.foxaweb.utils.Raster;
import flash.display.Bitmap;
import flash.geom.Point;
import flash.display.Sprite;
import flash.utils.Timer;
import flash.text.TextField;
var ti:Timer = new Timer(0,0);
ti.addEventListener(TimerEvent.TIMER,tmr);
ti.start();
var gfx:Raster = new Raster(stage.stageWidth,stage.stageHeight,false);
addChild(new Bitmap(gfx));
var oMod:int = 10;
var out1:TextField=new TextField();
out1.selectable = false;
out1.wordWrap = true;
out1.width = 100;
out1.height = 70;
out1.x = oMod;
out1.y = SH-(out1.height+oMod);
out1.background=true;
out1.alpha=0.5;
addChild(out1);
var outStr:String = "";
out1.text = outStr;
const SW:int = stage.stageWidth;
const SH:int = stage.stageHeight;
const R:Number = 3;
const PM:int = 300;
var points:Array= new Array();
var cObj:Object=new Object();
var CM = 255;
var r:int = CM,g:int = 0,b:int = 0;
var c:int = toHex(r,g,b);
function tmr(e:TimerEvent):void {
outStr = " R: "+r+"\n G: "+g+"\n B: "+b+"\n Hex: 0x"+numToHexString(r,2)+numToHexString(b,2)+numToHexString(g,2);
out1.text = outStr;
points = randPoints(PM,SW,SH);
cObj = hexToRGB(c);
r = cObj.red;
g = cObj.green;
b = cObj.blue;
c = colorCycle(r,g,b);
for (var i:int=0; i gfx.aaCircle(points.x,points[i].y,R,c);
}
}
var k:int = 0;
functio
n colorCycle(r:int,g:int,b:int):int {
switch (k) {
case 0 :
if (g ++g;
break;
} else {
++k;
}
case 1 :
if (r>0) {
--r;
break;
} else {
++k;
}
case 2 :
if (b ++b;
break;
} else {
++k;
}
case 3 :
if (g>0) {
--g;
break;
} else {
++k;
}
case 4 :
if (r ++r;
break;
} else {
++k;
}
case 5 :
if (b>0) {
--b;
break;
} else {
++k;
}
case 6 :
if(r>0){
--r;
break;
}else{
++k;
}
case 7 :
if(r ++r;
break;
}else{
k=0;
++g;
}
}
return toHex(r,g,b);
}
function randPoints(numPoints:int, xMax:Number, yMax:Number,xMin:Number=0,yMin:Number=0):Array {
var pa:Array=new Array();
var max = numPoints;
for (var i:int = 0; i pa.push(new Point(Math.round(Math.random()*(xMax-xMin))+xMin,Math.round(Math.random()*(yMax-yMin))+yMin));
}
return pa;
}
function toHex(r:int, g:int, b:int):int {
return r << 16 | g << 8 | b;
}
function hexToRGB(hex:Number):Object {
var rgbObj:Object = {
red: ((hex & 0xFF0000) >> 16),
green: ((hex & 0x00FF00) >> 8),
blue: ((hex & 0x0000FF))
};
return rgbObj;
}
function numToHexString(num:uint, min:uint = 1):String {
var st:String = num.toString(16).toUpperCase();
while (min > st.length) {
st = "0" + st;
}
return st;
}


*DISCLAIMER: I don't accept constructive(or otherwise) criticism. In the event that you DON'T think it's cool, you can suck me off.
Index
2

Posts: 7,352
Joined: Jun 2007
Rep: 10

View Profile
Feb 15, 2012 2:35 AM #594028
what the fuck, Zed? Did you sabotage me? Seriously? What the fuck? I swear I'll get you for this. Shit took me like 15 minutes and you just fucked it. It's like when you make a really sweet sandcastle and that dickhead stomps on it.

edit: Woah... how did you like... get everything back in place... like... wow, maybe it wasn't you...

WOAH HOLD UP
DID YOU DELETE THAT THREAD
THAT THREAD WAS FUCKING GIGANTIC AND YOU JUST DELETED IT? THAT WAS FUCKING HISTORY
HOLY SHIT CROSSING THE LINE MAN
NOT
COOL

still assuming it was you

but it had to be

it's fucking HARD deleted, gone forever

a multiple hundred page thread

that's ridonkulous
Sacred
2

Posts: 6,545
Joined: Jun 2007
Rep: 10

View Profile
Feb 15, 2012 2:35 AM #594029
Quote from N T
I'd do it, but I find your Merge Collab boring.
And I've been both on Stickpage and Fluidanims, so it doesn't make sense.


Well I find your assumptions empty. Who's to say it's boring? You don't even have any idea what's going to happen in it.
Index
2

Posts: 7,352
Joined: Jun 2007
Rep: 10

View Profile
Feb 15, 2012 2:48 AM #594033
guuuyyyysss I think Zed (permanently) deleted a thread that was almost 400 pages long just to spite me, isn't that evil? that thread was important to me; it helped me ease myself into Main when I was new
god my ass is going to be hurting all week now
Highly_Scented
2

Posts: 287
Joined: May 2006
Rep: 10

View Profile
Feb 15, 2012 2:53 AM #594036
Quote from Index
guuuyyyysss I think Zed (permanently) deleted a thread that was almost 400 pages long just to spite me, isn't that evil? that thread was important to me; it helped me ease myself into Main when I was new
god my ass is going to be hurting all week now


'evil' is a subjective term. What thread was it
Index
2

Posts: 7,352
Joined: Jun 2007
Rep: 10

View Profile
Feb 15, 2012 2:55 AM #594037
I'm intentionally withholding specifics, in case he didn't actually do anything.
Quote from Highly_Scented
'evil' is a subjective term.

this isn't a fucking debate, you don't need to nitpick my word choice when I'm only 60% serious
Covalence
Banned

Posts: 4,666
Joined: May 2007
Rep: 10

View Profile
Feb 15, 2012 3:15 AM #594047
spp just isn't spp without somebody being mad
Javelin
2

Posts: 1,529
Joined: Feb 2010
Rep: 10

View Profile
Feb 15, 2012 3:17 AM #594048
Umad?