https://github.com/dante4rt/side-quests-bot
A bot for automating the process of clearing tasks in the Side Quests game.
https://github.com/dante4rt/side-quests-bot
automated bot quests side web3
Last synced: 9 months ago
JSON representation
A bot for automating the process of clearing tasks in the Side Quests game.
- Host: GitHub
- URL: https://github.com/dante4rt/side-quests-bot
- Owner: dante4rt
- Created: 2024-04-01T11:34:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T01:22:44.000Z (about 2 years ago)
- Last Synced: 2025-05-30T12:16:21.212Z (about 1 year ago)
- Topics: automated, bot, quests, side, web3
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 6
- Watchers: 1
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Side Quests Bot
This bot automates the process of clearing tasks in the Side Quests game. It fetches the tasks assigned to the user and clears them automatically.
## Installation
1. Clone the repository:
```sh
git clone https://github.com/dante4rt/side-quests-bot.git
```
2. Install dependencies:
```sh
cd side-quests-bot
npm install
```
## Usage
1. Obtain your Bearer token:
- Open your browser's developer tools (usually by pressing F12 or right-clicking and selecting "Inspect").
- Go to the "Network" tab.
- Navigate to the Side Quests game and look for a request with the authorization header.
- Copy the value after the word "Bearer".
2. Set up environment variables:
- Create a `.env` file in the root directory of the project.
- Add your Bearer token to the `.env` file:
```
TOKEN=your_bearer_token_here
```
3. Run the bot:
```sh
npm start
```
## How to Obtain Bearer Token
To obtain the Bearer token required for authentication, follow these steps:
1. Open the Side Quests game in your browser.
2. Open the developer tools (usually by pressing F12 or right-clicking and selecting "Inspect").
3. Go to the "Network" tab.
4. Perform any action in the game that requires authentication (e.g., loading your profile).
5. Look for a request in the Network tab that has an "Authorization" header.
6. Copy the value after the word "Bearer" in the Authorization header.
7. Paste this value as your Bearer token in the `.env` file.