Posts: 5492
Threads: 53
Joined: September 4, 2014
Reputation:
55
RE: The last person to post wins !
August 28, 2015 at 10:11 pm
(This post was last modified: August 28, 2015 at 10:12 pm by Exian.)
That's funny, cuz here's a PM from you:
Cachoochoo Dreaming Wrote:Whassaaaaap!
Hey man, later on I'm gonna joke around in that Last Person to Post thread and pretend I won, but Tibs already let me know that you won. Just want to fuck with people. You know me! Anyways, just wanted to congratulate you on being the best one.
Love,
Cooflahflah
I can't remember where this verse is from, I think it got removed from canon:
"I don't hang around with mostly men because I'm gay. It's because men are better than women. Better trained, better equipped...better. Just better! I'm not gay."
For context, this is the previous verse:
"Hi Jesus" -robvalue
Posts: 5492
Threads: 53
Joined: September 4, 2014
Reputation:
55
RE: The last person to post wins !
August 28, 2015 at 10:16 pm
Probably winning this thread?
Exian Wrote:I'm sorry
Don't ban me!
I can't remember where this verse is from, I think it got removed from canon:
"I don't hang around with mostly men because I'm gay. It's because men are better than women. Better trained, better equipped...better. Just better! I'm not gay."
For context, this is the previous verse:
"Hi Jesus" -robvalue
Posts: 5492
Threads: 53
Joined: September 4, 2014
Reputation:
55
RE: The last person to post wins !
August 28, 2015 at 10:20 pm
Is there a penalty for bribery? I'll give you $100 to lock this thread due to Exian winning!
I can't remember where this verse is from, I think it got removed from canon:
"I don't hang around with mostly men because I'm gay. It's because men are better than women. Better trained, better equipped...better. Just better! I'm not gay."
For context, this is the previous verse:
"Hi Jesus" -robvalue
Posts: 30129
Threads: 304
Joined: April 18, 2014
Reputation:
91
RE: The last person to post wins !
August 28, 2015 at 10:23 pm
you're all pikers and posers
The granting of a pardon is an imputation of guilt, and the acceptance a confession of it.
Posts: 4196
Threads: 60
Joined: September 8, 2011
Reputation:
30
RE: The last person to post wins !
August 28, 2015 at 10:36 pm
(This post was last modified: August 28, 2015 at 10:36 pm by IATIA.)
who? huh? wazzat?
You make people miserable and there's nothing they can do about it, just like god.
-- Homer Simpson
God has no place within these walls, just as facts have no place within organized religion.
-- Superintendent Chalmers
Science is like a blabbermouth who ruins a movie by telling you how it ends. There are some things we don't want to know. Important things.
-- Ned Flanders
Once something's been approved by the government, it's no longer immoral.
-- The Rev Lovejoy
Posts: 5356
Threads: 178
Joined: June 28, 2015
Reputation:
35
RE: The last person to post wins !
August 28, 2015 at 11:45 pm
#include<dos.h>
#include<iostream.h>
#include<stdlib.h>
#include<conio.h>
int r=2,b=24;
int c=0;
int g[800],h[800];
void paint()
{
for(int i=0;i<1000;++i)
{
if(g[i]=='\0')
{
break;
}
gotoxy(g[i],h[i]);
cprintf("*");
}
}
void main()
{
textcolor(2);
char a;
int x;
clrscr();
int z=0;
int i=0;
while(i<5000)
{
i++;
z=random(8);
gotoxy(r,b);
cprintf("*");
a=getche();
x=a;
if(x==32)
{
g[c]=r;
h[c]=b;
c++;
sound(512);
delay(100);
nosound();
}
if(x==72)
{
b--;
if(b==0)
{
b++;
}
clrscr();
paint();
gotoxy(r,b);
cprintf("*");
}
if(x==80)
{
b++;
if(b==25)
{
b--;
}
clrscr();
paint();
gotoxy(r,b);
cprintf("*");
}
if(x==75)
{
r--;
if(r==1)
{
r++;
}
clrscr();
paint();
gotoxy(r,b);
cprintf("*");
}
if(x==77)
{
r++;
if(r==80)
{
r--;
}
clrscr();
paint();
gotoxy(r,b);
cprintf("*");
}
}
sound(51);
delay(300);
gotoxy(1,1);
cout<<"lol bye";
nosound();
sleep(5);
exit(0);
}
Console based paint