Author Topic: Count to 50 before an admin/mod posts!  (Read 4383929 times)

Offline MeerkatStar

  • Dedicated Supporter
  • ***
  • Posts: 337
  • Floof-O-Meter: 11
  • You can be your own spotlight?
    • View Profile
    • My Youtube Account :3
Re: Count to 250 before a admin/mod posts :]
« Reply #1370 on: October 30, 2011, 03:28:49 pm »
6

Offline corkiedog1

  • Experienced Traveler
  • **
  • Posts: 203
  • Floof-O-Meter: 3
    • View Profile
Re: Count to 250 before a admin/mod posts :]
« Reply #1371 on: October 30, 2011, 06:41:19 pm »
7 darnit kaya

Offline MeerkatStar

  • Dedicated Supporter
  • ***
  • Posts: 337
  • Floof-O-Meter: 11
  • You can be your own spotlight?
    • View Profile
    • My Youtube Account :3
Re: Count to 250 before a admin/mod posts :]
« Reply #1372 on: October 31, 2011, 10:10:14 am »
8.....250  ;D lol jks

Thierry

  • Guest
Re: Count to 250 before a admin/mod posts :]
« Reply #1373 on: October 31, 2011, 06:12:57 pm »
9
10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,
31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,
61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,
91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,
111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,
131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,
151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,
171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,
191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,
211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,
231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250

Offline MeerkatStar

  • Dedicated Supporter
  • ***
  • Posts: 337
  • Floof-O-Meter: 11
  • You can be your own spotlight?
    • View Profile
    • My Youtube Account :3
Re: Count to 250 before a admin/mod posts :]
« Reply #1374 on: October 31, 2011, 06:40:04 pm »
10  :o awesome how do u do that?  :D

Thierry

  • Guest
Re: Count to 250 before a admin/mod posts :]
« Reply #1375 on: October 31, 2011, 07:40:35 pm »
11
10  :o awesome how do u do that?  :D
what?

Offline MeerkatStar

  • Dedicated Supporter
  • ***
  • Posts: 337
  • Floof-O-Meter: 11
  • You can be your own spotlight?
    • View Profile
    • My Youtube Account :3
Re: Count to 250 before a admin/mod posts :]
« Reply #1376 on: October 31, 2011, 08:32:18 pm »
The fading numbers in ur post: 10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,
31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,
61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,
91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,
111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,
131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,
151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,
171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,
191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,
211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,
231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250

Thierry

  • Guest
Re: Count to 250 before a admin/mod posts :]
« Reply #1377 on: October 31, 2011, 09:25:41 pm »
13

all are grey color, i put this code: {color=#101010}1,2,3,4....{/color}
the numbers after the # simbol are hexadecimal numbers, 2 numbers for each primary color.
10=red, 10=green, 10=blue (and that's is dark gray)

The numbers are no fading (may be the monitor view angle if it is a LCD monitor).

and for making all 250 numbers just a simple program made in C languaje.
Code: [Select]
#include<stdio.h>
#define NUMBERS 251

int main()
{
int i; //general use variables

FILE *salida;
salida=fopen("i-win.txt","w+");
if(salida==NULL)
  {
  printf("Error creating output file\n");
  return 1;
  }

for(i=0;i<NUMBERS;i++)
  {
  fprintf(salida,"%d,",i);
  }

if(fclose(salida)!=0)
  {
  printf("Error fail to close salida\n");
  return 1;
  }

printf("Ok, all is done <Roar>");
return 0;
}


Offline MeerkatStar

  • Dedicated Supporter
  • ***
  • Posts: 337
  • Floof-O-Meter: 11
  • You can be your own spotlight?
    • View Profile
    • My Youtube Account :3
Re: Count to 250 before a admin/mod posts :]
« Reply #1378 on: October 31, 2011, 09:33:48 pm »
oh wow thanks  :D 14

Thierry

  • Guest
Re: Count to 250 before a admin/mod posts :]
« Reply #1379 on: October 31, 2011, 09:40:50 pm »
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,
41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,
61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,
81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,
101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,
121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,
141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,
161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,
181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,
201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,
221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,
241,242,243,244,245,246,247,248,249,250

I do this with this program:
Code: [Select]
#include<stdio.h>
#define NUMBERS 251

int main()
{
int i; //general use variables

FILE *salida;
salida=fopen("i-win.txt","w+");
if(salida==NULL)
  {
  printf("Error creating output file\n");
  return 1;
  }

for(i=0;i<NUMBERS;i++)
  {
  fprintf(salida,"[color=#%.2X%.2X00]%d[/color],",NUMBERS-i,i,i);
  if(i%20==0)
    {
    fprintf(salida,"\n");
    }
  }

if(fclose(salida)!=0)
  {
  printf("Error fail to close salida\n");
  return 1;
  }

printf("Ok, all is done <Roar>");
return 0;
}