Nate
Nate
Explore posts from servers
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
here is what i have for the computer paddle
12 replies
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
private void MoveComputerPaddle() { // Moves the computer paddle position to align with the ball if (pcbComp.Left + (pcbComp.Width / 2) < pcbBall.Left) { pcbComp.Left += (int)dblSpeed/1; } else if (pcbComp.Left + (pcbComp.Width / 2) > pcbBall.Left) { pcbComp.Left -= (int)dblSpeed/1; } }
12 replies
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
under MoveComputerPaddle() pcbComp.Left -= (int)dblSpeed; is that suppose to slow it down?
12 replies
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
where in the code can i adjust the speed
12 replies
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
how can i make it so the computer paddle doesn't always hit the ball so the player can have a fair chance of winning
12 replies
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
the computer paddle always hits the ball back making no possibility for the player to win
12 replies
CC#
Created by Nate on 6/5/2024 in #help
Ping Pong Game (Need Helping Adjusting AI Move)
12 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
i tried
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
still some problems but the basics are there
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
here is my final changes
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
shows no errors but the game is not functioning properly
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
here is my updated version
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
3 major problems: the computer doesn't make a move sometimes after the player does. even though the player or computer has won, it doesn't show the messege Game over. player or computer has won. the score is not tracked
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
can you take a look at what i have so far?
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
i think i have to create a method for the restart button, but im not sure how to make the game keep track of score
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
i didn't name the button click. after doing so it works, but the game doesn't keep track of score and the reset button doesn't work
32 replies
CC#
Created by Nate on 5/21/2024 in #help
Tic Tac Toe Game
32 replies