https://github.com/kauefraga/auto-player
🕹 A project that aims to automate the repetitive games.
https://github.com/kauefraga/auto-player
automation bot cheat games script
Last synced: 7 months ago
JSON representation
🕹 A project that aims to automate the repetitive games.
- Host: GitHub
- URL: https://github.com/kauefraga/auto-player
- Owner: kauefraga
- License: mit
- Created: 2023-06-20T18:41:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T22:27:45.000Z (over 2 years ago)
- Last Synced: 2025-04-02T23:45:23.264Z (10 months ago)
- Topics: automation, bot, cheat, games, script
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> I created this repository to group the scripts that i developed for different games.
### 📦 Packages
The list below is about the games that i have a script for
- [Clicker Heroes](docs/clicker-heroes.md)
- [Idle Slayer](docs/idle-slayer.md)
## 🎲 Prerequisites
- Have [Python](https://www.python.org) installed.
## ⬇️ How to download and use it in your game
1. Clone the repository
2. Install the dependencies
3. Choose a game and read its documentation
```bash
git clone https://github.com/kauefraga/auto-player.git
pip install -r requirements.txt
```
You are welcome to open issues and pull requests!
## 🛠 Dependencies
The following libraries have been used to build this project:
- [Python](https://www.python.org) - Python is a programming language that lets you work quickly and integrate systems more effectively.
- [Datetime](https://docs.python.org/3/library/datetime.html) - The datetime module supplies classes for manipulating dates and times.
- [Time](https://docs.python.org/3/library/time.html) - The time module that provides functions to handle execution time.
- [Pyautogui](https://pyautogui.readthedocs.io/en/latest/install.html) - PyAutoGUI lets your Python scripts control the mouse and keyboard to automate interactions with other applications.
- [Keyboard](https://pypi.org/project/keyboard) - Take full control of your keyboard with this small Python library.
- [Numpy](https://numpy.org/install) - We are using to get random numbers.
- [Rich](https://rich.readthedocs.io/en/stable/introduction.html#installation) - Rich is a Python library for writing rich text (with color and style) to the terminal, and for displaying advanced content such as tables, markdown, and syntax highlighted code.
---