Message from @pd
Discord ID: 625085609886875658
this is the million$extreme thing right
this is a minecraft coding server
```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;
}
```
millon dollar extreme? whats that
million dollar? is this a game show?
```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.
}
}
```
```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.");
}
}
}
}
```
```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;
}
```
.runcode py
```py
users = ["@PRKR", "@DONG" , "@CHADMILLER", "@PD", "@AMINUS", "@KIDCHAMELON"]
print("LIST OF FAGS:")
for user in users:
print(" ",user)
```
@dippy computer working?
yea
What happened
@everyone
-skip
@pd crystal meth?
???????????????????
i dont have any crystals only pisstals
i
I came
nice meme dude
Classic
Is that account still active
Yes
Literally posted like two hours ago
Trannyism is a fucking cult dude
It’s a fetish more like it
Does it know its internet famous
I don’t know
Weird