A simple aim trainer game built with Python and Pygame, designed to help players improve their aiming speed and accuracy across different difficulty levels. Choose a difficulty and try to hit as many targets as possible before the timer runs out!
The game begins with a welcome menu where you can choose between three levels of difficulty: Easy, Medium, and Hard. Once you select a level, a countdown timer will start. Your goal is to hit as many targets as you can by clicking on them before the timer ends. After each round, your accuracy and score will be displayed.
- Three Difficulty Levels: Each level changes the number and size of targets, making the game more challenging.
- Real-Time Score and Accuracy Tracking: See your progress throughout the game.
- Simple Menu System: Easy navigation through the game's interface.
- Python 3.6+
- Pygame library
-
Clone this repository:
git clone https://github.com/AadityaPanda/AimTrainer.git
-
Install Pygame:
pip install pygame
-
Run the game:
python AimTrainer.py
- Start the game by running the script.
- Choose a difficulty level from the welcome menu:
- Easy: Larger targets, fewer total targets.
- Medium: Smaller targets, medium difficulty.
- Hard: Small targets, increased difficulty.
- Use the mouse to aim and click on targets.
- Your accuracy and score will be displayed at the end of each round.
- Press ESC to exit the game.
AimTrainer/
├── assets/
│ ├── images/
│ │ └── targetblue.jpg # Target image
│ ├── sounds/
│ │ ├── snipersound.wav # Shooting sound effect
│ │ └── metalHit.wav # Hit sound effect
│ └── texts/
│ ├── easy.txt # Config file for easy difficulty
│ ├── medium.txt # Config file for medium difficulty
│ └── hard.txt # Config file for hard difficulty
├── aim_trainer_game.py # Main game file
└── README.md