need someone who is good with c++ I'm making a game I would like to hire you for 48 hours with pay

JamesWolverine

Well-Known Member
anyone here?
Basically to be real with you guys, I'm a university student that is required to complete a simple game (graphics not required) and my teacher decided middle of the year to drop out and get a job elsewhere with better pay I have dyslexia and haven't had the proper support I need also and there's no teacher to help me and now I'm stuck, I can give you the material mostly would be copy and pasting. Please help I have less than 48 hours to do it or I will fail university :( I will pay you. I spoke to uni they wont understand nor will they help.
Update: Leave me your email and we can discuss it further, I would like to do a voice communication if possible.
 

see4

Well-Known Member
What's the pay? What needs to be done? Explain here in some detail, the project and the expected outcome.
 

Singlemalt

Well-Known Member
anyone here?
Basically to be real with you guys, I'm a university student that is required to complete a simple game (graphics not required) and my teacher decided middle of the year to drop out and get a job elsewhere with better pay I have dyslexia and haven't had the proper support I need also and there's no teacher to help me and now I'm stuck, I can give you the material mostly would be copy and pasting. Please help I have less than 48 hours to do it or I will fail university :( I will pay you. I spoke to uni they wont understand nor will they help.
Update: Leave me your email and we can discuss it further, I would like to do a voice communication if possible.
And you found out when? Why do some people wait til the very last minute to get help or advice? This isn't any different than the folks who have to take a drug test tmo, after smoking an oz. this week.
 

JamesWolverine

Well-Known Member
And you found out when? Why do some people wait til the very last minute to get help or advice? This isn't any different than the folks who have to take a drug test tmo, after smoking an oz. this week.
Dude you don't even know me or what I've been doing what makes you think you can judge me? how do you know I havem't been trying to seek help? just because I haven't on this site? last place I'd ask for help it's on this forums because obviously this forum isn't dedicated to that kind of stuff so the percentage of someone in that profession would be little to non so don't try judge me like you know me.
 

bu$hleaguer

Well-Known Member
Yeah man what the fuck don't judge this fucking guy! He needs help so he went to the best place to get it. Everyone knows RIU is like a fucking hot bed for techie software engineers.
 

tyler.durden

Well-Known Member
I'm no genius, but I'd have probably posted this thread in the Science/Tech subforum instead of a place called Talk & Toke. Some things you just can't get from uni book learnin'...
 

ChingOwn

Well-Known Member
//Tic-Tac-Toe Game
//
#include <iostream>

using namespace std;

void display_board();
void player_turn();
bool gameover();

char turn;
bool draw = false;
char board[3][3] = {{'1', '2', '3'}, {'4', '5', '6'}, {'7', '8', '9'}};

int main()
{
cout << "Tic Tac Toe Game\n";
cout << "Player 1 [X] --- Player 2 [O]\n";
turn = 'X';

while (!gameover())
{
display_board();
player_turn();
gameover();
}

if (turn == 'O' && !draw)
{
display_board();
cout << endl << endl << "Player 1 [X] Wins! Game Over!\n";
}
else if (turn == 'X' && !draw)
{
display_board();
cout << endl << endl << "Player 2 [O] Wins! Game Over!\n";
}
else
{
display_board();
cout << endl << endl << "It's a draw! Game Over!\n";
}
}

void display_board()
{
cout << "---------------------" << endl << endl;
cout << " | | " << endl;
cout << " " << board[0][0] << " | " << board[0][1] << " | " << board[0][2] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << board[1][0] << " | " << board[1][1] << " | " << board[1][2] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << board[2][0] << " | " << board[2][1] << " | " << board[2][2] << endl;
cout << " | | " << endl;
}

void player_turn()
{
int choice;
int row = 0, column = 0;

if (turn == 'X')
{
cout << "Player 1 turn [X]: ";
}
else if (turn == 'O')
{
cout << "Player 2 turn [O]: ";
}
cin >> choice;

switch (choice)
{
case 1: row = 0; column = 0; break;
case 2: row = 0; column = 1; break;
case 3: row = 0; column = 2; break;
case 4: row = 1; column = 0; break;
case 5: row = 1; column = 1; break;
case 6: row = 1; column = 2; break;
case 7: row = 2; column = 0; break;
case 8: row = 2; column = 1; break;
case 9: row = 2; column = 2; break;
default:
cout << "You didn't enter a correct number! Try again\n";
player_turn();
}

if (turn == 'X' && board[row][column] != 'X' && board[row][column] != 'O')
{
board[row][column] = 'X';
turn = 'O';
}
else if (turn == 'O' && board[row][column] != 'X' && board[row][column] != 'O')
{
board[row][column] = 'O';
turn = 'X';
}
else
{
cout << "The cell you chose is used! Try again\n";
player_turn();
}

}

bool gameover()
{
for (int i = 0; i < 3; i++)//Check for a win
{
if ((board[0] == board[1] && board[1] == board[2]) || (board[0] == board[1] && board[1] == board[2]) || (board[0][0] == board[1][1] && board[1][1] == board[2][2]) || (board[0][2] == board[1][1] && board[1][1] == board[2][0]))
{
return true;
}
}

for (int i = 0; i < 3; i++)//Check for draw
{
for (int j = 0; j < 3; j++)
{
if (board[j] != 'X' && board[j] != 'O')
{
return false;
}
}
}
draw = true;
return true;
}


//The Internet is college just know what to google bitch
 

Pinworm

Well-Known Member
//Tic-Tac-Toe Game
//
#include <iostream>

using namespace std;

void display_board();
void player_turn();
bool gameover();

char turn;
bool draw = false;
char board[3][3] = {{'1', '2', '3'}, {'4', '5', '6'}, {'7', '8', '9'}};

int main()
{
cout << "Tic Tac Toe Game\n";
cout << "Player 1 [X] --- Player 2 [O]\n";
turn = 'X';

while (!gameover())
{
display_board();
player_turn();
gameover();
}

if (turn == 'O' && !draw)
{
display_board();
cout << endl << endl << "Player 1 [X] Wins! Game Over!\n";
}
else if (turn == 'X' && !draw)
{
display_board();
cout << endl << endl << "Player 2 [O] Wins! Game Over!\n";
}
else
{
display_board();
cout << endl << endl << "It's a draw! Game Over!\n";
}
}

void display_board()
{
cout << "---------------------" << endl << endl;
cout << " | | " << endl;
cout << " " << board[0][0] << " | " << board[0][1] << " | " << board[0][2] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << board[1][0] << " | " << board[1][1] << " | " << board[1][2] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << board[2][0] << " | " << board[2][1] << " | " << board[2][2] << endl;
cout << " | | " << endl;
}

void player_turn()
{
int choice;
int row = 0, column = 0;

if (turn == 'X')
{
cout << "Player 1 turn [X]: ";
}
else if (turn == 'O')
{
cout << "Player 2 turn [O]: ";
}
cin >> choice;

switch (choice)
{
case 1: row = 0; column = 0; break;
case 2: row = 0; column = 1; break;
case 3: row = 0; column = 2; break;
case 4: row = 1; column = 0; break;
case 5: row = 1; column = 1; break;
case 6: row = 1; column = 2; break;
case 7: row = 2; column = 0; break;
case 8: row = 2; column = 1; break;
case 9: row = 2; column = 2; break;
default:
cout << "You didn't enter a correct number! Try again\n";
player_turn();
}

if (turn == 'X' && board[row][column] != 'X' && board[row][column] != 'O')
{
board[row][column] = 'X';
turn = 'O';
}
else if (turn == 'O' && board[row][column] != 'X' && board[row][column] != 'O')
{
board[row][column] = 'O';
turn = 'X';
}
else
{
cout << "The cell you chose is used! Try again\n";
player_turn();
}

}

bool gameover()
{
for (int i = 0; i < 3; i++)//Check for a win
{
if ((board[0] == board[1] && board[1] == board[2]) || (board[0] == board[1] && board[1] == board[2]) || (board[0][0] == board[1][1] && board[1][1] == board[2][2]) || (board[0][2] == board[1][1] && board[1][1] == board[2][0]))
{
return true;
}
}

for (int i = 0; i < 3; i++)//Check for draw
{
for (int j = 0; j < 3; j++)
{
if (board[j] != 'X' && board[j] != 'O')
{
return false;
}
}
}
draw = true;
return true;
}


//The Internet is college just know what to google bitch
>set.save_roll-advdge.exe
[bot.2fas]
[git-wash]

....
.......
> Splash_96.32% (Target 96% Awesome-sauce)
 
Top