Message from @dippy

Discord ID: 625084896766984244


2019-09-21 20:41:43 UTC  

imagine not wanting nigger nigs slippers

2019-09-21 20:41:50 UTC  

aight man kinda cringe

2019-09-21 20:42:47 UTC  
2019-09-21 20:43:15 UTC  

https://cdn.discordapp.com/attachments/371875015018283009/625069550421147648/DoorLookers.gif

2019-09-21 20:50:37 UTC  

https://cdn.discordapp.com/attachments/371875015018283009/625071401463840778/IMG_20190921_155250_016.jpg

2019-09-21 21:03:53 UTC  

Level 45 shaman

2019-09-21 21:04:04 UTC  

Orgrimar

2019-09-21 21:16:21 UTC  

@pd learn 2 code

2019-09-21 21:17:13 UTC  
2019-09-21 21:33:22 UTC  

this is the million$extreme thing right

2019-09-21 21:36:07 UTC  
2019-09-21 21:36:19 UTC  

this is a minecraft coding server

2019-09-21 21:38:47 UTC  

```cpp
#include <iostream>
#include <string>
#include "FBullCowGame.h"

void PrintIntro();
void PlayGame();
std::string GetGuess();
bool AskToPlayAgain();
FBullCowGame BCGame;

//Main is the entry point for the application.
int main()
{
bool bPlayAgain = false;
do {
PrintIntro();
PlayGame();
bPlayAgain = AskToPlayAgain();
} while (bPlayAgain);

return 0;
}

void PlayGame()
{
FBullCowGame BCGame; //instaniate a new game
int MaxTries = BCGame.GetMaxTries();

std::cout << MaxTries << std::endl;

//loop for the number of turns asking for guesses.
for (int count = 1; count <= MaxTries; count++) {
std::string Guess = GetGuess();
//^turns whatever is returned in get guess into a callable variable.
std::cout << "Your guess was: " << Guess << std::endl;
std::cout << std::endl;
}
}

void PrintIntro()
{
//introduce the game
constexpr int WORD_LENGTH = 9;
std::cout << "Welcome to Bulls and Cows, a fun word game.\n";
std::cout << "Can you guess the " << WORD_LENGTH << " letter isogram I'm thinking of?\n";
std::cout << std::endl;
return;
}

std::string GetGuess()
{ //ctrl r can replace a word name.
//get a guess from the player.
std::string Guess = "";
int CurrentTry = BCGame.GetCurrentTry();
std::cout << "Try " << CurrentTry << " Enter your guess: ";
std::getline(std::cin, Guess); // use instead of cin for a full string instead of just one word.

return Guess;
}
bool AskToPlayAgain()
{
std::cout << "Do you want to play again?(y/n) ";
std::string Response = "";
std::getline(std::cin, Response);

return (Response[0] == 'y' || Response[0] == 'Y');

std::cout << std::endl;


}
```

2019-09-21 21:38:47 UTC  

millon dollar extreme? whats that

2019-09-21 21:39:15 UTC  

million dollar? is this a game show?

2019-09-21 21:39:30 UTC  

```cpp
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Chapter1 {
public class GrenadeExplosion : MonoBehaviour {
void OnCollisionEnter(Collision col) //method for when an item colliders with an item.
{
Debug.Log(col.contacts[0].point.ToString()); // shows where in the world space the colidder conected with the object.
Destroy(gameObject); //destroys the game object this script is attached too.
}
}
```

2019-09-21 21:40:25 UTC  

```cpp
void Update()
{
CheckForInput();
}
void CheckForInput()
{
if (Input.GetButton("Fire1") && Time.time> nextFire) //input.getkey(keycode.mouse0) uses the function to call a key so you can output a certain result.
{
Debug.DrawRay(transform.TransformPoint(0,0,1), transform.forward, Color.green, 3); //does the same thing as physics but makes a representation of the line.
if(Physics.Raycast(transform.TransformPoint(0,0,1), transform.forward, out hit, range)) //physics.raycast is a line drawn from the player inside of
//() is the acceptance for the raycast to be drawn. (transfrom.transfrompoint() tells the computer where you want to start from, and transform.forward makes it so it drawa
// the line forward on the z axis i believe. out hit detects anything it hits and range is how long the line is.
{
Debug.Log(hit.transform.name); //outputs whatever it hits to the console.
}
nextFire = Time.time + fireRate; //time.time is the time since the game began so when it realizes the time is greater than nextfire it will run this code
//but since this makes the current time plus firerate, which is 0.3 it makes the if statement not true. because the nextfire became reater than time.
// Debug.Log("Key Pressed.");
}
}
}
}
```

2019-09-21 21:41:25 UTC  

```cpp
#include <iostream>
#include <string>

using namespace std;

int main(){
cout << "FIND THE THOT" << endl;

string thot[3];
int thotpeople = 0;
int useranswer;

thot[thotpeople++] = "3.horny bitch";
thot[thotpeople++] = "2.christian bitch";
thot [thotpeople++] = "1.Red pilled bitch";
cout << "chose the thot by number 1 through 3!" << endl;
for(int i; i < thotpeople; i++){
cout << thot[i] << endl;
}
cin >> useranswer;
if(useranswer == 1){
cout << "BEGONE THOT!";
}else{
cout << "BRO THAT AINT THE THOT!";
}
return 0;
}
```

2019-09-21 21:41:29 UTC  
2019-09-21 21:43:14 UTC  

https://cdn.discordapp.com/attachments/371875015018283009/625084647671595048/71586066_2458816307737615_579550079329763328_n.png

2019-09-21 21:44:12 UTC  

.runcode py
users = ["@PRKR", "@Dong" , "@CHADMILLER", "@pd", "@AMINUS", "@KIDCHAMELON"]
print("LIST OF FAGS:")
for user in users:
print(" ",user)

2019-09-21 21:44:31 UTC  

.runcode py
```py
users = ["@PRKR", "@DONG" , "@CHADMILLER", "@PD", "@AMINUS", "@KIDCHAMELON"]
print("LIST OF FAGS:")
for user in users:
print(" ",user)
```

2019-09-21 21:45:29 UTC  

@dippy computer working?

2019-09-21 21:45:46 UTC  

yea

2019-09-21 21:46:07 UTC  

What happened

2019-09-21 21:46:55 UTC  

@everyone

2019-09-21 21:47:02 UTC  

grab your crystals and head to vc

2019-09-21 21:48:49 UTC  

-skip

2019-09-21 21:49:16 UTC  

@pd crystal meth?

2019-09-21 21:52:46 UTC  
2019-09-21 21:52:49 UTC  
2019-09-21 21:52:54 UTC  

???????????????????

2019-09-21 21:58:54 UTC  

i dont have any crystals only pisstals

2019-09-21 21:59:09 UTC  

i

2019-09-21 21:59:30 UTC  

I came

2019-09-21 22:24:00 UTC  

https://cdn.discordapp.com/attachments/371875015018283009/625094906167164928/image0.png

2019-09-21 22:37:07 UTC  

nice meme dude

2019-09-21 22:37:44 UTC  

https://cdn.discordapp.com/attachments/371875015018283009/625098362256883712/1568913856680m.png

2019-09-21 22:40:05 UTC  

Classic

2019-09-21 22:40:14 UTC  

Is that account still active