Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

School is awesome!

2 posters

Go down  Message [Page 1 of 1]

1School is awesome! Empty School is awesome! Thu Oct 29, 2009 2:53 am

chee

chee
Admin

I hate it. For example.

#include<iostream.h>
#include<dos.h>
#include<conio.h>
#include<stdlib.h>

int min,max,x1;

int main(){
clrscr();

cout << "\n\n\t 3-digit random numbers in 6x10 matrix:";




int i;
cout << "\n\n\t";
max = 0; min = 1000;
for(i=0;i < 200; i++){
if(i%6==0) cout << "\n\t";
if(i%60==0){
delay(700);
cout << "\n\n Wait...\n\n\t";
} //IF
x1 = 100 + random(899);
cout << x1 << "\t";
if(min>x1) min = x1;
if(max<x1) max = x1;
}
cout << "\n\n\tMIN IS " << min << "\tMAX IS " << max;
cout << "\n\n\t 0-Key to exit, others to repeat...";

while(getch()!='0'){
cout << "\n\n\t More random numbers to come...";
for(i=0;i < 200; i++){
if(i%6==0) cout << "\n\t";
if(i%60==0){
delay(700);
cout << "\n\n Wait...\n\n\t";
} //IF
x1 = 100 + random(899);
cout << x1 << "\t";
if(min>x1) min = x1;
if(max<x1) max = x1;
}
cout << "\n\n\tMIN IS " << min;
cout << "\tMAX IS " << max;
cout << "\n\n\t 0-Key to exit, others to repeat...";


}

cout << "\n\n\t Complete...\n";
getch();
return 0;
}

https://stackergrounds.forumotion.net

2School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 9:59 pm

FlappyFish

FlappyFish

:>"{@&$@>Sad

see vinny i can post random symbols too, like my angry face?

3School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:03 pm

chee

chee
Admin

that magikarp is beautiful.

https://stackergrounds.forumotion.net

4School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:07 pm

FlappyFish

FlappyFish

ya i know i have the same picture with a different saying on it but i like that one better

5School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:10 pm

FlappyFish

FlappyFish

https://2img.net/h/i482.photobucket.com/albums/rr182/FlappyFish117/magikarpbitches.png?t=1256868518

thats the other one, you should also bring your camera and record some of the play testing we do after the sneak if we stay for a while, i can put the videos up on my photobucket account if you dont want to put them on youtube

6School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:15 pm

chee

chee
Admin

my camera is my phone so ill have it anyways :~O

ill playtest thats fine, i need a ryko tho. how much do u want for one?

https://stackergrounds.forumotion.net

7School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:39 pm

FlappyFish

FlappyFish

um, if you are able to get both mats would you do a ryko and like 15 dollars for one of them?

if not you can borrow it for playtesting and we can work out a trade for it there, i do better with trades when i got the stuff in front of me

8School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:42 pm

chee

chee
Admin

i'd rather just buy one. gathering ground is having pre orders of hidden arsenal for 82 bucks tho

https://stackergrounds.forumotion.net

9School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:54 pm

FlappyFish

FlappyFish

is that a good deal? arent you getting yours from BnB?

10School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 10:56 pm

chee

chee
Admin

i want to get it at bnb because it would just be easy to get it there and pay in cash whenever it comes out, but i hope they have enough boxes.

https://stackergrounds.forumotion.net

11School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 11:00 pm

FlappyFish

FlappyFish

thats true, they will have enough and if your worried about it just get there right when they open and be like "bitch get in the back and get my boxes"

12School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 11:04 pm

chee

chee
Admin

oh well i hope so~~


so much how much for the ryko cuzzzzzzzzzzzzzzzzzz

https://stackergrounds.forumotion.net

13School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 11:06 pm

FlappyFish

FlappyFish

i told you, we can work it out saturday

14School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 11:16 pm

chee

chee
Admin

do you know off the top of your head what is on the banlist at newcastle and what isnt?

https://stackergrounds.forumotion.net

15School is awesome! Empty Re: School is awesome! Thu Oct 29, 2009 11:20 pm

FlappyFish

FlappyFish

lots of crazy stuff, we didnt just undan and ban stuff, we moved stuff to two and three and down to one, we totally revamped it, ill talk to you saturday about it and ill bring a copy of the list

16School is awesome! Empty Re: School is awesome! Thu Nov 05, 2009 2:37 am

chee

chee
Admin

started 2d graphics in c++ movin on up to make call of duty 10

#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
#include<stdlib.h>

void main(){

int gdriver=DETECT,gmode;
initgraph(&gdriver,&gmode,".\\");
int x1, y1, r;
setbkcolor(1);
setcolor(15);
x1=250; y1=200; r=120;
circle(350,200,r);
outtextxy(x1,y1, "Watch this one to start");
delay(2000);


setcolor(1);
outtextxy(x1,y1, "Watch this one to start");
setcolor(15);
outtextxy(135,400,"Hit a key to contiue");
setcolor(1);
circle(350,200,r);
for(int i=0; i<100; i++){
setcolor(i);
x1=random(640); y1=random(480);
r=random(80);
if(i<30) circle(x1+(i),y1+(i),r);
else circle(x1+(i*2),y1+30,r);
delay(100);
if(kbhit())break;

}

getch();
closegraph();
}

https://stackergrounds.forumotion.net

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum