Jump to content

Last one to post wins


ProtoGuy

Recommended Posts

Someone plz ask Death to add me to list :(

2pzzjb9.jpg

106px-National_Defense_Service_Medal_ribbon.svg.png106px-Navy_Rifle_Marksmanship_Ribbon.svg.png120px-USN_Expert_Pistol_Shot_Ribbon.png

God dammit Seany, STOP SHARING MY MIND

" I believe in something greater than myself. A better world. A world without sin. I'm not going to live there. There's no place for me there... I'm a monster.What I do is evil. I have no illusions about it, but it must be done."

Link to comment
Share on other sites

 

 

 

 

 

Did I miss anyone? (It's a rotating signature, so you may have to refresh a few times.)

If you're going by a minimum of 1k posts in all of Forum Games, you missed me.... 1767 posts in Forum Games. Although, I will admit that most of those are at least a year old and my main chunk is probably from when I first joined TIF back in '06.

 

You're at the bottom, above halo.

17175_s.gif

[spoiler=Quotes]

Goddammit Monk, stop being so full of win.

I am Monk's [bleep]

 

Link to comment
Share on other sites

I think hes doing more notable forum gamers.

 

Ownage, I've been lurking this board for a good three years.

It takes a while to build up a reputation. Just be patient.

"Let your anger be as a monkey in a piñata... hiding amongst the candy... hoping the kids don't break through with the stick." - Master Tang

Link to comment
Share on other sites

 

 

 

 

 

Did I miss anyone? (It's a rotating signature, so you may have to refresh a few times.)

If you're going by a minimum of 1k posts in all of Forum Games, you missed me.... 1767 posts in Forum Games. Although, I will admit that most of those are at least a year old and my main chunk is probably from when I first joined TIF back in '06.

 

You're at the bottom, above halo.

I think I'm going blind... :wall:

> SELECT * FROM users WHERE clue > 0;

0 rows returned

There's no place like 127.0.0.1

There are only 10 types of people

in this world: those who understand

binary and those who don't.

This statement is false.

$DO || ! $DO ; try

try: command not found

Link to comment
Share on other sites

Death you are amazing. :thumbup:

EDIT: Death, forgive me, I forgot to give you a well done on the Forum Games sig, so I will do that here: Well done. :thumbsup:

ahyeah-1.gif

Link to Forum Games signature.

[hide=TIFer Quotes]

This lack of discussion value..disturbs me.
English is the only language on this forum.

If you use another language, you need to include a traduction

bgok5jn dsgtalg

Oh wow, I hate everything -.-

Death kinda scares me.

your obsession with phallic objects shows quite clearly in your artworks.

Ffs, someone put this in their sig.

[/hide]

Link to comment
Share on other sites

Not saying it qualifies me but I was on this like a year or two ago, then left tip. it forums for a while then went to off topic the re-discovered forum games. If i posted that whole time as much as I do now I could easily have over 5k posts by now maybe 10k

2pzzjb9.jpg

106px-National_Defense_Service_Medal_ribbon.svg.png106px-Navy_Rifle_Marksmanship_Ribbon.svg.png120px-USN_Expert_Pistol_Shot_Ribbon.png

God dammit Seany, STOP SHARING MY MIND

" I believe in something greater than myself. A better world. A world without sin. I'm not going to live there. There's no place for me there... I'm a monster.What I do is evil. I have no illusions about it, but it must be done."

Link to comment
Share on other sites

 

 

 

 

 

Did I miss anyone? (It's a rotating signature, so you may have to refresh a few times.)

If you're going by a minimum of 1k posts in all of Forum Games, you missed me.... 1767 posts in Forum Games. Although, I will admit that most of those are at least a year old and my main chunk is probably from when I first joined TIF back in '06.

 

You're at the bottom, above halo.

I think I'm going blind... :wall:

Or you just aren't used to non-binary stuff. >.>

17175_s.gif

[spoiler=Quotes]

Goddammit Monk, stop being so full of win.

I am Monk's [bleep]

 

Link to comment
Share on other sites

 

 

 

 

 

Did I miss anyone? (It's a rotating signature, so you may have to refresh a few times.)

If you're going by a minimum of 1k posts in all of Forum Games, you missed me.... 1767 posts in Forum Games. Although, I will admit that most of those are at least a year old and my main chunk is probably from when I first joined TIF back in '06.

 

You're at the bottom, above halo.

I think I'm going blind... :wall:

Or you just aren't used to non-binary stuff. >.>

It's not the non-binary, it's the non-code. I can read the following like a regular text. :ugeek:

 

[hide=code]

using namespace std;


int main()
{
srand(time(0));
char start;
bool play = true;

do
{
	menuScreen(); // print out the opening menu
	bool menu = true;

	do
	{
		cin >> start; // get player's choice of what to do

		///////////////////////////////////// if they want to load a game
		if (start == 'L' || start == 'l')
		{
			char tryagain = 'y'; // in case the file does not exist
			do
			{
				//get the name of the saved character
				string fname;
				cout << "What is the name of the saved character? ";
				cin >> fname;

				//load the game; if it fails ask if they'd like to try again
				if(bin_loadGame(fname))
				{
					menu = false;
					break;
				}
				else
				{
					cout << "Either the file does not exist or could not be opened.\n";
					cout << "Would you like to try to load a different character? (y/n) ";
					cin >> tryagain;
				}
			} while(tryagain == 'y');

			if(tryagain != 'y') // if the load is unsuccessful and they don't want to try again,
			{					// ask them to choose to quit, start a new game or load a game again
				cout << "Enter another choice: ";
			}
		}


		///////////////////////////////////// if they want to start a new game
		else if (start == 'N' || start == 'n')
		{
			createMap(); // generate the map

			//get the name they want to give their character
			cout << "What would you like your name to be? (do not use spaces) ";
			string name;
			cin >> name;
			player.set_name(name);

			//print the instructions/rules of the game
			printRules();
			menu = false;
		}

		///////////////////////////////////// if they want to leave without doing anything
		else if (start == 'Q' || start == 'q')
		{
			cout << "Good-bye :'(" << endl;
			return 0;
		}

		///////////////////////////////////// if they do not make a valid choice, exit the game
		else
		{
			cout << "That wasn't one of the 3 options... dummy... doesn't even know how to read..." << endl;
			return 0;
		}
	} while(menu);

	RefreshMap(); // print the map for the first time

	//Is used to take input from the keyboard. The code in this section is partially taken from http://www.dreamincode.net/forums/showtopic29209.htm and http://msdn.microsoft.com/en-us/library/ms685035%28VS.85%29.aspx
	HANDLE hStdin; 
    DWORD cNumRead, fdwMode, fdwSaveOldMode, i; 
    INPUT_RECORD irInBuf[128]; 
    int counter=0;

    // Get the standard input handle. 

    hStdin = GetStdHandle(STD_INPUT_HANDLE); 
    if (hStdin == INVALID_HANDLE_VALUE) 
        ErrorExit("GetStdHandle"); 

    // Save the current input mode, to be restored on exit. 

    if (! GetConsoleMode(hStdin, &fdwSaveOldMode) ) 
        ErrorExit("GetConsoleMode"); 

    // Enable the window and mouse input events. 

    fdwMode = ENABLE_WINDOW_INPUT | ENABLE_MOUSE_INPUT; 
    if (! SetConsoleMode(hStdin, fdwMode) ) 
        ErrorExit("SetConsoleMode"); 


	while(!dead) // while the player is still alive, continue reading keyboard input
	{
		if (! ReadConsoleInput(
				hStdin,      // input buffer handle
				irInBuf,     // buffer to read into
				128,         // size of read buffer
				&cNumRead) ) // number of records read
			ErrorExit("ReadConsoleInput");

		// Dispatch the events to the appropriate handler.
		for (i = 0; i < cNumRead; i++)
		{
			switch(irInBuf[i].EventType)
			{
			case KEY_EVENT: // keyboard input
					KeyEventProc(irInBuf[i].Event.KeyEvent);
					break; 
			}
		}
	}

	//once they die, ask if they want to play again
	cout << "Do you want to play again? (y/n) ";
	cin >> start;

	//if they do want to play again
	if (start == 'y')
	{
		play = true;  // make sure game will go through another iteration
		dead = false; // reset the dead variable so that they don't die after one move
		resetPlayer();
		continue;	  // restart the game
	} else {
		play = false; // make sure the game will not go through another iteration
		cout << "Good-Bye. :'(\n"; // say good-bye
		break;		  // break out of the while loop
	}
} while(play);
return 0;
}

[/hide]

 

And, yes, that is part of a program I've helped write (I originally helped write it for a final project, but have been expanding it since school got out).

 

 

EDIT: Woot!! I got a page. :geek:

> SELECT * FROM users WHERE clue > 0;

0 rows returned

There's no place like 127.0.0.1

There are only 10 types of people

in this world: those who understand

binary and those who don't.

This statement is false.

$DO || ! $DO ; try

try: command not found

Link to comment
Share on other sites

I have till june 10 till me school gets out. Snow days ftl.

2pzzjb9.jpg

106px-National_Defense_Service_Medal_ribbon.svg.png106px-Navy_Rifle_Marksmanship_Ribbon.svg.png120px-USN_Expert_Pistol_Shot_Ribbon.png

God dammit Seany, STOP SHARING MY MIND

" I believe in something greater than myself. A better world. A world without sin. I'm not going to live there. There's no place for me there... I'm a monster.What I do is evil. I have no illusions about it, but it must be done."

Link to comment
Share on other sites

College on a 4-1-4 schedule == awesome.

 

 

Now, I'm going to go play with what I like to call the Energizer Shihtzu.... bbl.

> SELECT * FROM users WHERE clue > 0;

0 rows returned

There's no place like 127.0.0.1

There are only 10 types of people

in this world: those who understand

binary and those who don't.

This statement is false.

$DO || ! $DO ; try

try: command not found

Link to comment
Share on other sites

Damn you Aksys Games. How can you make a trailer for a "Really Naughty Limited Edition" of a game like this and still show that it is still Rated T!?

http://www.youtube.com/watch?v=6uSoOETgfMc

umvc3_sig3.jpgTokiHakurei-SatellizerelBridget2.png

Click the "Signed in as..." go to Manage ignored users, copy paste Toki_Hakurei.

I'm pretty sure having boobs is the most broken super power anyone can ever have. 0_0
Link to comment
Share on other sites

^ :blink:

 

I get out either the 21st or the 25th. It was either Monday or Friday, and I don't follow stuff closely enough. :twss:

Link to Forum Games signature.

[hide=TIFer Quotes]

This lack of discussion value..disturbs me.
English is the only language on this forum.

If you use another language, you need to include a traduction

bgok5jn dsgtalg

Oh wow, I hate everything -.-

Death kinda scares me.

your obsession with phallic objects shows quite clearly in your artworks.

Ffs, someone put this in their sig.

[/hide]

Link to comment
Share on other sites

MEANWHILE IN OFF TOPIC A LONE ANIME THREAD POPS OUT OF FREAKING NOWHERE.

I, first on the scene, did what I did best when these threads occur in their wrong place.

 

 

trollan.png

 

 

 

maxtrolling.png

 

 

P.S. it was a gif.

"Let your anger be as a monkey in a piñata... hiding amongst the candy... hoping the kids don't break through with the stick." - Master Tang

Link to comment
Share on other sites

That gif is epic. Also, I must sleep.

You just got here darnit!

 

[hide]No, really, sleep is good. See you later. [/hide]

 

Halo, right before you did that I was thinking there was a huge decrease in Inb4lock posts. :XD: I think it's because I've been avoiding the RS part of the forums.

Link to Forum Games signature.

[hide=TIFer Quotes]

This lack of discussion value..disturbs me.
English is the only language on this forum.

If you use another language, you need to include a traduction

bgok5jn dsgtalg

Oh wow, I hate everything -.-

Death kinda scares me.

your obsession with phallic objects shows quite clearly in your artworks.

Ffs, someone put this in their sig.

[/hide]

Link to comment
Share on other sites

Sleep is for the weak. Alos night to all who left.

2pzzjb9.jpg

106px-National_Defense_Service_Medal_ribbon.svg.png106px-Navy_Rifle_Marksmanship_Ribbon.svg.png120px-USN_Expert_Pistol_Shot_Ribbon.png

God dammit Seany, STOP SHARING MY MIND

" I believe in something greater than myself. A better world. A world without sin. I'm not going to live there. There's no place for me there... I'm a monster.What I do is evil. I have no illusions about it, but it must be done."

Link to comment
Share on other sites

That gif is epic. Also, I must sleep.

You just got here darnit!

 

[hide]No, really, sleep is good. See you later. [/hide]

 

Halo, right before you did that I was thinking there was a huge decrease in Inb4lock posts. :XD: I think it's because I've been avoiding the RS part of the forums.

Haha, I believe Im the only one who does it in OT, many of them will get snip'd by hater mods. But it gets my two cents of lulz when ever it rarely happens.

"Let your anger be as a monkey in a piñata... hiding amongst the candy... hoping the kids don't break through with the stick." - Master Tang

Link to comment
Share on other sites

That gif is epic. Also, I must sleep.

You just got here darnit!

 

[hide]No, really, sleep is good. See you later. [/hide]

 

Halo, right before you did that I was thinking there was a huge decrease in Inb4lock posts. :XD: I think it's because I've been avoiding the RS part of the forums.

Haha, I believe Im the only one who does it in OT, many of them will get snip'd by hater mods. But it gets my two cents of lulz when ever it rarely happens.

Heh, awesome. :thumbup:

 

But anyways, I love you for posting that. Deltora Quest was my favorite book series as a kid (tied with The Seventh Tower series) and I never would have thought there'd be an anime of it. <3:

Link to Forum Games signature.

[hide=TIFer Quotes]

This lack of discussion value..disturbs me.
English is the only language on this forum.

If you use another language, you need to include a traduction

bgok5jn dsgtalg

Oh wow, I hate everything -.-

Death kinda scares me.

your obsession with phallic objects shows quite clearly in your artworks.

Ffs, someone put this in their sig.

[/hide]

Link to comment
Share on other sites

That gif is epic. Also, I must sleep.

You just got here darnit!

 

[hide]No, really, sleep is good. See you later. [/hide]

 

Halo, right before you did that I was thinking there was a huge decrease in Inb4lock posts. :XD: I think it's because I've been avoiding the RS part of the forums.

Haha, I believe Im the only one who does it in OT, many of them will get snip'd by hater mods. But it gets my two cents of lulz when ever it rarely happens.

Heh, awesome. :thumbup:

 

But anyways, I love you for posting that. Deltora Quest was my favorite book as a kid (tied with The Seventh Tower series) and I never would have though there'd be an anime of it. <3:

 

Though you may never read this... I have all the Deltora quest books, and the ones after that series. Until I liked more mature stuff, fav books ever.

2pzzjb9.jpg

106px-National_Defense_Service_Medal_ribbon.svg.png106px-Navy_Rifle_Marksmanship_Ribbon.svg.png120px-USN_Expert_Pistol_Shot_Ribbon.png

God dammit Seany, STOP SHARING MY MIND

" I believe in something greater than myself. A better world. A world without sin. I'm not going to live there. There's no place for me there... I'm a monster.What I do is evil. I have no illusions about it, but it must be done."

Link to comment
Share on other sites

i am random and wtf is this

This is the only topic in /FG/ welcome to the club bruh. Its pretty much a free for all.

2pzzjb9.jpg

106px-National_Defense_Service_Medal_ribbon.svg.png106px-Navy_Rifle_Marksmanship_Ribbon.svg.png120px-USN_Expert_Pistol_Shot_Ribbon.png

God dammit Seany, STOP SHARING MY MIND

" I believe in something greater than myself. A better world. A world without sin. I'm not going to live there. There's no place for me there... I'm a monster.What I do is evil. I have no illusions about it, but it must be done."

Link to comment
Share on other sites

Bye guys, sleep time.

Link to Forum Games signature.

[hide=TIFer Quotes]

This lack of discussion value..disturbs me.
English is the only language on this forum.

If you use another language, you need to include a traduction

bgok5jn dsgtalg

Oh wow, I hate everything -.-

Death kinda scares me.

your obsession with phallic objects shows quite clearly in your artworks.

Ffs, someone put this in their sig.

[/hide]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.