Jump to content
Banner by ~ Ice Princess Silky

General Chat Thread


Apple      Bloom

Recommended Posts

Good morning fillies

 

Have you brushed your teeth today?

WsRUyAr.png

 

butt of course, mai dear

 

img-1422672-2-vin-diesel-mega-man.jpg

Gotta love that one :wub:

Too bad his buster is a bit wee too small

 

Well, at least he's not like this

jFU8oRO.jpg

 

Time for another game!

 

img-1423981-1-h_CB7_B8_AAD.png

 

My name is Dashing Forth. Erm... I guess that's okay. :T

Clever Blitz... and Cocoa Luck. Huh :derp:

 

Being a clever speed devil sounds good

 

img-1424047-1-teacher_s_song_by_kirlia19

 

ha1uaLI.jpg

 

 

  • Brohoof 5
Link to comment
Share on other sites

Hmm, it's 8 AM here wacko.png

 

Greetings from the other side of the planet! tongue.png

 

Oh wow, awesome laugh.png

 

Where do you live, since it is the other side of the planet? I'm in New York 

Link to comment
Share on other sites

 

 

Where do you live, since it is the other side of the planet? I'm in New York

South East Asian here :muffins:

 

It's supposed to be dry season around this part, but fucking weather keeps raining again and again :c

How's the weather there?

Link to comment
Share on other sites

South East Asian here derpy_emoticon1.png

 

It's supposed to be dry season around this part, but fucking weather keeps raining again and again :c

How's the weather there?

 

Beautiful, not to make you jealous though. Mid 70s and sunshine, and low humidity. :)

 

Oh and you must live around Thailand then? I have family who live there, and I usually go visit them every 4 years or so. 

Link to comment
Share on other sites

Beautiful, not to make you jealous though. Mid 70s and sunshine, and low humidity. smile.png

 

Oh and you must live around Thailand then? I have family who live there, and I usually go visit them every 4 years or so. 

clear skys, warm weather, a gentle breeze, massachusetts in a nutshell at the moment

Link to comment
Share on other sites

Time for another game!

Lametastic, and I still got Ganaram Inukshuk out of it...

 

BTW:

 

// Wanna know the odd part?
// When I was sick, I created a program that made use of an array, and I posted the swaurce code online.
// So I searched for it online, and pulled it out. Not easy.
// http://mlpforums.com/topic/56198-general-chat-thread/page-4575#entry1342443

#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

// Function prototypes
void PrintOutEveryPonyName(string [], int);
void PrintOutEveryPonyActivity(string [], int);
 
int main()
{
	// Declaration of Variables and Populating of Arrays
	signed int day, month, arrayNumber1, arrayNumber2;
	string YourPonyName;
	const int arraysize1 = 42;
	const int arraysize2 = 30;
	string ponyname[arraysize1] =
		{"Twilight Sparkle", "Rainbow Dash", "Fluttershy", "Rarity", "Applejack", "Pinkie Pie",
		"Apple Bloom", "Scootaloo", "Sweetie Belle", "Babs Seed", "Diamond Tiara", "Silver Spoon",
		"Carrot Top", "Bonbon", "Lyra", "Derpy Hooves", "Berry Punch", "Cheerilee",
		"Nurse Redheart", "Mayor Mare", "Cloudchaser", "Flitter", "Thunderlane", "Caramel",
		"Snips", "Snails", "The Great and Powerful Trixie", "Featherweight", "Octavia", "Vinyl Scratch",
		"Princess Luna", "Princess Celestia", "Princess Cadance", "Shining Armor", "a Royal Guard Pony", "Pony Joe",
		"a", "a", "a", "a", "a", "a"};
	// 42 pony names to choose from. It needs six more pony names...
	string ponyactivity[arraysize2] =
		{"discover an ancient evil with", "bake a cake with", "sail across the world with", "have a race against",
		"go fishing with", "travel to Appaloosa with", "go stargazing with", "pick apples for",
		"get punched through the fourth wall by", "will have to use the bathroom of", "hug", "surprise hug",
		"get tickled by", "write a book with", "perform a show with", "give flowers to",
		"ride a train with", "ride a balloon with", "return a letter to", "play video games with",
		"draw a painting of"};
	// 30 pony activities to choose from, but this one doesn't have enough elements; It's missing 9 elements.
	// That's a possible max of 1260 combinations, versus the other "birthday games" that have a max of 372...
	// Take that, Derpibooru!!!
 
	// Preliminary input
	cout << "Enter your pony name.\n";
	cin >> YourPonyName;

	// Diagnostic for printing out everything
	if (YourPonyName == "diagnostic")
	{
		PrintOutEveryPonyName(ponyname, arraysize1);
		PrintOutEveryPonyActivity(ponyactivity, arraysize2);
		system("pause");
	}
	// Diagnostic for printing out every pony name
	else if (YourPonyName == "ponyname")
	{
		PrintOutEveryPonyActivity(ponyname, arraysize1);
		system("pause");
	}
	// Diagnostic for printing out every pony activity
	else if (YourPonyName == "activity")
	{
		PrintOutEveryPonyActivity(ponyactivity, arraysize2);
		system("pause");
	}
	// Main stuff happens here
	else
	{
		cout << "Input the day and month (the number) of your birthday.\n";
		cin >> day >> month;
		arrayNumber1 = day + month - 2;
		if (month < day)
			arrayNumber2 = day - month - 1;
		else if (day < month)
			arrayNumber2 = month - day - 1;
		else if (day == month)
			arrayNumber2 = day;
		cout << "You, " << YourPonyName << ", will " << ponyactivity[arrayNumber2] << " " << ponyname[arrayNumber1] << ".\n";
		system("pause");
	}
}

// Definition of Functions
void PrintOutEveryPonyName(string ponyname[], int size)
{
	cout << "The sum of the number of your month and the number of your day will be used to determine which pony your paired with.\n";
	for (int index = 0; index < size; index++)
		cout << index + 1 << " = " << ponyname[index] << "\n";
}

void PrintOutEveryPonyActivity(string ponyactivity[], int size)
{
	cout << "The difference between the number of your month and the number of your day will be used to determine which pony activity you will do.\n"
		<< "If the month and day are the same, then the number of your day will be used instead.\n";
	for (int index = 0; index < size; index++)
		cout << index + 1 << " = " << ponyactivity[index] << "\n";
}
Link to comment
Share on other sites

Beautiful, not to make you jealous though. Mid 70s and sunshine, and low humidity. smile.png

 

Oh and you must live around Thailand then? I have family who live there, and I usually go visit them every 4 years or so. 

I want sunshine :c

It's been forever since I got a clear sky

 

I'm Bali here. The land where going clothed to the beach is a sin and pickpockets outnumber the tourists :lol:

Link to comment
Share on other sites

(edited)

Lametastic, and I still got Ganaram Inukshuk out of it...

 

BTW:

 

// Wanna know the odd part?
// When I was sick, I created a program that made use of an array, and I posted the swaurce code online.
// So I searched for it online, and pulled it out. Not easy.
// http://mlpforums.com/topic/56198-general-chat-thread/page-4575#entry1342443

#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

// Function prototypes
void PrintOutEveryPonyName(string [], int);
void PrintOutEveryPonyActivity(string [], int);
 
int main()
{
	// Declaration of Variables and Populating of Arrays
	signed int day, month, arrayNumber1, arrayNumber2;
	string YourPonyName;
	const int arraysize1 = 42;
	const int arraysize2 = 30;
	string ponyname[arraysize1] =
		{"Twilight Sparkle", "Rainbow Dash", "Fluttershy", "Rarity", "Applejack", "Pinkie Pie",
		"Apple Bloom", "Scootaloo", "Sweetie Belle", "Babs Seed", "Diamond Tiara", "Silver Spoon",
		"Carrot Top", "Bonbon", "Lyra", "Derpy Hooves", "Berry Punch", "Cheerilee",
		"Nurse Redheart", "Mayor Mare", "Cloudchaser", "Flitter", "Thunderlane", "Caramel",
		"Snips", "Snails", "The Great and Powerful Trixie", "Featherweight", "Octavia", "Vinyl Scratch",
		"Princess Luna", "Princess Celestia", "Princess Cadance", "Shining Armor", "a Royal Guard Pony", "Pony Joe",
		"a", "a", "a", "a", "a", "a"};
	// 42 pony names to choose from. It needs six more pony names...
	string ponyactivity[arraysize2] =
		{"discover an ancient evil with", "bake a cake with", "sail across the world with", "have a race against",
		"go fishing with", "travel to Appaloosa with", "go stargazing with", "pick apples for",
		"get punched through the fourth wall by", "will have to use the bathroom of", "hug", "surprise hug",
		"get tickled by", "write a book with", "perform a show with", "give flowers to",
		"ride a train with", "ride a balloon with", "return a letter to", "play video games with",
		"draw a painting of"};
	// 30 pony activities to choose from, but this one doesn't have enough elements; It's missing 9 elements.
	// That's a possible max of 1260 combinations, versus the other "birthday games" that have a max of 372...
	// Take that, Derpibooru!!!
 
	// Preliminary input
	cout << "Enter your pony name.\n";
	cin >> YourPonyName;

	// Diagnostic for printing out everything
	if (YourPonyName == "diagnostic")
	{
		PrintOutEveryPonyName(ponyname, arraysize1);
		PrintOutEveryPonyActivity(ponyactivity, arraysize2);
		system("pause");
	}
	// Diagnostic for printing out every pony name
	else if (YourPonyName == "ponyname")
	{
		PrintOutEveryPonyActivity(ponyname, arraysize1);
		system("pause");
	}
	// Diagnostic for printing out every pony activity
	else if (YourPonyName == "activity")
	{
		PrintOutEveryPonyActivity(ponyactivity, arraysize2);
		system("pause");
	}
	// Main stuff happens here
	else
	{
		cout << "Input the day and month (the number) of your birthday.\n";
		cin >> day >> month;
		arrayNumber1 = day + month - 2;
		if (month < day)
			arrayNumber2 = day - month - 1;
		else if (day < month)
			arrayNumber2 = month - day - 1;
		else if (day == month)
			arrayNumber2 = day;
		cout << "You, " << YourPonyName << ", will " << ponyactivity[arrayNumber2] << " " << ponyname[arrayNumber1] << ".\n";
		system("pause");
	}
}

// Definition of Functions
void PrintOutEveryPonyName(string ponyname[], int size)
{
	cout << "The sum of the number of your month and the number of your day will be used to determine which pony your paired with.\n";
	for (int index = 0; index < size; index++)
		cout << index + 1 << " = " << ponyname[index] << "\n";
}

void PrintOutEveryPonyActivity(string ponyactivity[], int size)
{
	cout << "The difference between the number of your month and the number of your day will be used to determine which pony activity you will do.\n"
		<< "If the month and day are the same, then the number of your day will be used instead.\n";
	for (int index = 0; index < size; index++)
		cout << index + 1 << " = " << ponyactivity[index] << "\n";
}

i think my computer might have a c++ program on it, but i cant for the life of me find it and use it, where would it be

Edited by Staticthor Draconus
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Join the herd!

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...