17.06.2010, 14:12
Quote:
|
Originally Posted by billiout
http://www.mathsisfun.com/binary-dec...converter.html
put the int on Decimal: and take the hex color. ![]() |
i just wanted to test some thing
thats what i've does:
Код:
if(!fexist("allcolors.txt")){
new str[60],File:C;
C = fopen("allcolors.txt",io_append);
for(new i;i<=16777216;i++){
format(str,60,"%06x\r\n",i);
fwrite(C,str);
}
fclose©;
}


