Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - maverick

Pages: 1 ... 383940 4142 ... 144
1171
Yeah talking to yourself is a big sign of autism. He might not even realize he's doing it
Is constantly whistling a sign of autism too? Because if it is then I must be autistic as fuck xDDDD CURSE YOU BEETHOVEEEEEEEN
Nah, I'd say you're fine.

1172
Yeah talking to yourself is a big sign of autism. He might not even realize he's doing it

1173
Why does Cheat let this dude continue posing?
I think I've suggested a loaf-only board, where he thinks he's posting on the normal flood and we don't have to see it.

1174
The Flood / Whatever happened to kupo
« on: May 24, 2017, 08:29:06 PM »
first one to talk gets to stay on my aircraft

1175
Serious / Re: Seven in 10 Brits support 'world government'...
« on: May 24, 2017, 02:46:19 PM »
The Swedish foundation also issued a report, called Global Catastrophic Risks 2017, which detailed a diverse range of possible threats.

A giant asteroid hitting Earth, disease pandemics, a massive volcanic eruption, artificial intelligence turning against us, weapons of mass destruction and ecological collapse all made the list.
lol

Maybe we should make a space military in case aliens decide to attack.

1176
fuck I cut myself

1177
The Flood / Re: GoT Season 7 trailer
« on: May 24, 2017, 01:59:21 PM »
Spoiler
>Dany gives more indication she lost the coin toss by burning Sam's dad. She's clearly not the immaculate caloreesi the normies think she is anymore
Spoiler
They'll probably make him a wife-beating, pedophile, murderer out of no where so the audience won't fell conflicted.

1178
The Flood / Re: GoT Season 7 trailer
« on: May 24, 2017, 01:56:17 PM »
The fact that (according to spoilers)

Spoiler
CIA dies

makes this season an immediate flop.
This is when I lost all interest in the season.
Spoiler
The showwriters just have no idea how to write the scheming characters from the books, which is why Doran got murdered out of no where and Varys just works for Dany now. It's a shame a show that is great in every other aspect can be trash just because of the writers.

1179
The Flood / Re: Ever been hit on by a gay dude?
« on: May 24, 2017, 01:56:43 AM »
Nope. I look too alpha and hetero so they don't even bother.

1180
The Flood / Hello fellow robots
« on: May 23, 2017, 07:21:46 AM »
Stayed up all night making this beatable AI tic tac toe game.

Spoiler
Code: [Select]
#include <iostream>
#include <stdlib.h>
#include <cstdlib>
#include <ctime>

using namespace std;

void MakeMove(char[]);
void PrintBoard(char[]);
void GameOver(char[]);
void algorithm(char[]);

int main()
{
    srand(time(0));
    int choice;
    char mark;
    char board[10] = {'o', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
    MakeMove(board);
}

void MakeMove(char board[])
{
    char choice;
    PrintBoard(board);
    cout << "\n   Choose Square #: ";
    cin >> choice;
    cout << endl << endl;
    if (choice == '1' && board[1] == '1')
    {
        board[1] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '2' && board[2] == '2')
    {
        board[2] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '3' && board[3] == '3')
    {
        board[3] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '4' && board[4] == '4')
    {
        board[4] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '5' && board[5] == '5')
    {
        board[5] = 'X';
        static int table[] = {1, 3, 7, 9};
        int i = rand() % (sizeof table / sizeof *table);
        board[i] = 'O';
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '6' && board[6] == '6')
    {
        board[6] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '7' && board[7] == '7')
    {
        board[7] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '8' && board[8] == '8')
    {
        board[8] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '9' && board[9] == '9')
    {
        board[9] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else
        MakeMove(board);
}

void PrintBoard(char b[])
{
    system("cls");
    cout << "\n\n\t   Tic Tac Toe\n\n";
    cout << "   Player 1 (X)  -  Player 2 (O)" << endl << endl;
    cout << "\t     |     |     " <<endl;
    cout << "\t  " << b[1] << "  |  " << b[2] << "  |  " << b[3] << "  " <<endl;
    cout << "\t—--|—--|—--" <<endl;
    cout << "\t  " << b[4] << "  |  " << b[5] << "  |  " << b[6] << "  " <<endl;
    cout << "\t—--|—--|—--" <<endl;
    cout << "\t  " << b[7] << "  |  " << b[8] << "  |  " << b[9] << "  " <<endl;
    cout << "\t     |     |     " <<endl << endl;
}

void GameOver(char board[])
{
    if (board[1] != '1' && board[2] != '2' && board[3] != '3' &&
        board[4] != '4' && board[5] != '5' && board[6] != '6' &&
        board[7] != '7' && board[8] != '8' && board[9] != '9')
    {
        cout << "Cat's game!" << endl << endl;
        exit(0);
    }
    else if (board[1] == 'X' && board[2] == 'X' && board[3] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[1] == 'X' && board[4] == 'X' && board[7] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[2] == 'X' && board[5] == 'X' && board[8] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[4] == 'X' && board[5] == 'X' && board[6] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[3] == 'X' && board[6] == 'X' && board[9] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[7] == 'X' && board[8] == 'X' && board[9] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[1] == 'X' && board[5] == 'X' && board[9] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[3] == 'X' && board[5] == 'X' && board[7] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[1] == 'O' && board[2] == 'O' && board[3] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[1] == 'O' && board[4] == 'O' && board[7] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[2] == 'O' && board[5] == 'O' && board[8] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[4] == 'O' && board[5] == 'O' && board[6] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[3] == 'O' && board[6] == 'O' && board[9] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[7] == 'O' && board[8] == 'O' && board[9] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[1] == 'O' && board[5] == 'O' && board[9] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[3] == 'O' && board[5] == 'O' && board[7] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
}

void algorithm(char board[])
{
    //offensive moves
    if (board[1] == 'O' && board[2] == 'O' && board[3] == '3')
        board[3] = 'O';
    else if (board[1] == 'O' && board[4] == 'O' && board[7] == '7')
        board[7] = 'O';
    else if (board[1] == 'O' && board[5] == 'O' && board[9] == '9')
        board[9] = 'O';
    else if (board[1] == 'O' && board[3] == 'O' && board[2] == '2')
        board[2] = 'O';
    else if (board[1] == 'O' && board[7] == 'O' && board[4] == '4')
        board[4] = 'O';
    else if (board[1] == 'O' && board[9] == 'O' && board[5] == '5')
        board[5] = 'O';
    else if (board[2] == 'O' && board[3] == 'O' && board[1] == '1')
        board[1] = 'O';
    else if (board[2] == 'O' && board[5] == 'O' && board[8] == '8')
        board[8] = 'O';
    else if (board[2] == 'O' && board[8] == 'O' && board[5] == '5')
        board[5] = 'O';
    else if (board[3] == 'O' && board[6] == 'O' && board[9] == '9')
        board[9] = 'O';
    else if (board[3] == 'O' && board[9] == 'O' && board[1] == '6')
        board[6] = 'O';
    else if (board[3] == 'O' && board[5] == 'O' && board[7] == '7')
        board[7] = 'O';
    //defensive moves
    else if (board[1] == 'X' && board[2] == 'X' && board[3] == '3')
        board[3] = 'O';
    else if (board[1] == 'X' && board[4] == 'X' && board[7] == '7')
        board[7] = 'O';
    else if (board[1] == 'X' && board[5] == 'X' && board[9] == '9')
        board[9] = 'O';
    else if (board[1] == 'X' && board[3] == 'X' && board[2] == '2')
        board[2] = 'O';
    else if (board[1] == 'X' && board[7] == 'X' && board[4] == '4')
        board[4] = 'O';
    else if (board[1] == 'X' && board[9] == 'X' && board[5] == '5')
        board[5] = 'O';
    else if (board[2] == 'X' && board[3] == 'X' && board[1] == '1')
        board[1] = 'O';
    else if (board[2] == 'X' && board[5] == 'X' && board[8] == '8')
        board[8] = 'O';
    else if (board[2] == 'X' && board[8] == 'X' && board[5] == '5')
        board[5] = 'O';
    else if (board[3] == 'X' && board[6] == 'X' && board[9] == '9')
        board[9] = 'O';
    else if (board[3] == 'X' && board[9] == 'X' && board[1] == '6')
        board[6] = 'O';
    else if (board[3] == 'X' && board[5] == 'X' && board[7] == '7')
        board[7] = 'O';
    //misc moves
    else if (board[1] == '1')
        board[1] = 'O';
    else if (board[2] == '2')
        board[2] = 'O';
    else if (board[3] == '3')
        board[3] = 'O';
    else if (board[4] == '4')
        board[4] = 'O';
    else if (board[5] == '5')
        board[5] = 'O';
    else if (board[6] == '6')
        board[6] = 'O';
    else if (board[7] == '7')
        board[7] = 'O';
    else if (board[8] == '8')
        board[8] = 'O';
    else if (board[9] == '9')
        board[9] = 'O';
}

Feel free to let me know how shitty it is.

1181
The Flood / Re: ITT: Movies that scared you as a kid
« on: May 22, 2017, 09:35:15 PM »
Anything where a human would get eaten alive or disentigrated would fuck me up as a kid. I specifically remember the tripods in War of the Worlds and the Cyclops from the Odyssey having a lasting impact. If I had seen something like Attack on titan as a kid, I probably would have been a cutter by middle school.

1182
The Flood / Re: Guys I think there is something wrong with me
« on: May 22, 2017, 09:16:38 PM »
They're basically supposed to be a parody of more mainstream memes, I believe. Making memes a meme so to speak.

1183
Serious / Re: Explosion in Manchester at a concert
« on: May 22, 2017, 08:56:15 PM »
That's pretty much a given. It's just that some might consider it a bit disrespectful to start posting memes in the midst of a tragedy.

1184
Serious / Re: Explosion in Manchester at a concert
« on: May 22, 2017, 07:06:54 PM »
It's an Ariana Grande concert with mostly kids in attendance...

1185
The Flood / Re: Yo Deci
« on: May 22, 2017, 01:08:41 AM »
Tell the mods to lock so that nothing starts ITT

The Deci Cycle must continue. There is no other option.
I was basically going to post this. The Deci Cycle is a force of nature and cannot be stopped.

1186
The Flood / Re: Just for my own records on this site
« on: May 21, 2017, 11:41:00 PM »
SO MUCH TO SHOOT
SO MUCH TO THROW
SO WHAT'S WRONG WITH TAKING THE MASK OFF
HEY NOW
YOU'RE A BIG GUY
TAKE THE MASK OFF
SEE-AYE-AYY

BRAAAAVO NOLAN I LOVE YOU
ONLY SHOOTING A MAN BEFORE THROWING HIM OUT OF A PLANE BREAKS THE MOOOOOLD

1187
The Flood / Re: deci
« on: May 20, 2017, 06:58:37 PM »
neme
mice

1188
The Flood / Re: Jive Turkey: A Tinder Story
« on: May 20, 2017, 04:23:44 PM »
I deleted mine after four days
I would too if I was some honking dork
Have fun wasting hours swiping just to get curved, Deci.

1189
The Flood / Re: Jive Turkey: A Tinder Story
« on: May 20, 2017, 02:24:30 AM »
I deleted mine after four days

1190
The Flood / Re: just got a tinder to cover up the pain of losing O
« on: May 19, 2017, 05:38:24 PM »
How many pictures do you have

1191
The Flood / Re: BAZOOPLE
« on: May 19, 2017, 12:04:41 AM »
So they're basically going to ruin the one thing the show has going for it by giving their best actor's role to a nine-year-old.

1192
The Flood / Re: I cried watching this
« on: May 18, 2017, 11:24:36 PM »
I wasn't born yesterday. This website hates my videos and hates me all together. Why would anyone want to react to any of my content other than the fact to just point and laugh saying how much of a retard I am and whatever comes to their mind?
There was nothing wrong with the video. People just do this shit because they know they'll get a reaction.

1193
Serious / Re: Serious is not The Flood
« on: May 18, 2017, 07:55:49 PM »
*remembers*

1194
Automatically believing the victim in every circumstance would only be a valid strategy if false testimonies never happened, which isn't the case. As with every other crime, it should be investigated and proven in court before convicting anyone.

1195
The Flood / Re: Top 10 films of all time thread
« on: May 16, 2017, 10:46:10 PM »
I just went with five for my list because I've not seen that many movies that are considered classics and decided to spare you guys of some of my more reddit-tier picks. These movies I would consider leagues above almost every other movie I've ever seen and even most movies I'd see on other peoples' top x lists. Maybe I'll come back and add some more later.



5. The Departed



This is probably my favorite Scorsese film, although I admittedly haven't seen much of his earlier work. It's been a while since I've seen it last. The cast is great and has some of my favorite actors. These are some of the best roles that DiCaprio and Damon have had.

4. The Presitge



I often find myself wondering whether The Dark Knight or The Prestige is Chris Nolan's best work. I tend to favor TDK because I'm a big fan of comic book movies and Batman is my favorite but The Prestige has to have some of the smartest writing of any movie I've ever seen. Usually when someone mentions The Prestige, it's followed by calling it "overlooked". I don't think I'd agree with this. I'm always seeing the movie praised online, although it is kind of sad to see Interstellar rated higher on imdb.

3. No Country For Old Men



Even though it won Best Picture back in '07, it sometimes seems like everyone subsequently forgot about it. I was fairly young when I first saw NCFOM, but was still blown away, despite its slower pacing. It has one of the scariest/most compelling villains of all time and it's no wonder why Javier Bardem keeps getting cast as the villain when trying to revitalize a franchise. It's the Coen Bros. best work without question.

2. Schindler's List



It's been several years since I've seen this one and I've only seen it once but as I recall it's one of the movies that's had the biggest impact on me. It really doesn't need to be viewed that many times because the story really sticks with you in a way that other movies don't. It's probably Spielberg's best film, which is a pretty huge claim, with Saving Private Ryan as a close second.

1. The Godfather



As Verb already stated: no explanation needed, but I'm going to give one anyway. It honestly amazes me how many great characters, plotlines, and themes Coppola fit into 2.95 hours. The Godfather Pt II is a decent extension but doesn't keep up the momentum or intrigue. It genuinely perplexes me how people consider it superior. Pt I has a fantastic arc for Michael whereas Pt II really doesn't, a much better story, and a role for basically everyone in it's large cast. Every time I watch it, I'm left with the feeling that I've just watched the best movie I've ever seen.

1196
Halo Wars

1197
The Flood / Re: I know who Foman is
« on: May 15, 2017, 09:26:08 PM »
Alright, here's the unedited picture:
Spoiler

That shit is likely Photoshopped or html edited in someway, which is not hard to do.

Here's what the real Foman said when I messaged him the other day about fake Foman here.



Spoiler
Foman just called Sep7agon tiny. You fucks are tiny. Deal with it.
He's trolling you dude. Don't fall for it.

1198
Can we just impeach Trump and get Mike 'zapem' Pence in as leader already? I don't approve of the guy at all, but at least he's not a complete retard.

Soon

1199
Serious / Re: You wake up
« on: May 15, 2017, 04:52:39 PM »
There are lots of things I find morally repugnant that are accepted in society.
Genuinely curious what some examples of this would be?

1200
The Flood / Re: In case people want to see the whole convo
« on: May 15, 2017, 12:31:43 PM »
Lol

Pages: 1 ... 383940 4142 ... 144