blum-auto-play
v1.0.3
Published
A script that will play mini game in Blum for you, using your tickets and collecting blum points
Downloads
55
Maintainers
Readme
Blum auto play game
A script that will play mini game in Blum for you, using your tickets and collecting blum points
Installation
- Install the
blum-auto-play
package:
npm install blum-auto-play
Configure
package.json
:- Open
package.json
- Add
"type": "module"
to the JSON structure:
- Open
{
"type": "module"
}
- Create a
index.js
file and paste the code:
import { play } from "blum-auto-play";
const authToken = "Bearer <your_token>";
play(authToken);
Add your Bearer token:
- Copy your Blum
Bearer token
and paste it in theindex.js
file.
- Copy your Blum
Receiving a Bearer token
Install the
Resource Override
extension for ChromeSet up Resource Override:
- Click the
Add Rule
button and selectChange Headers
. - In the
For
field, enter*
(for convenience). - Click
Edit Headers
and select from the presets:Enable CORS
,Allow Frames
andAllow Outside Content
. - Close the settings window.
- Click the
Get your Bearer token:
- Go to the web version of Telegram and open DevTools (usually F12 or Ctrl+Shift+I).
- Launch Blum and go to the
Network
tab in DevTools. - Find your Bearer token in the request headers.
Copy your Bearer token and paste it into the index.js file.
Run the script:
node index.js
Functionality
- Starts a new game
- Collects a random number of points between 170 and 195
- Waits a random amount of time between 30 and 35 seconds
- Claims the points
- If an error occurs, waits 5 seconds and retries
- If the token is invalid, logs an error and exits
- If the number of tickets is 0, logs an error and exits
Note:
Once you have received the Bearer token, be sure to disable the Resource Override extension to avoid problems with other sites.
Happy mining!
Блум автоматический игровой процесс
Скрипт, который будет играть за вас в мини-игру в Blum, используя ваши билеты и собирая очки Blum.
Установка
Установите пакет
blum-auto-play
:npm install blum-auto-play
Настройте
package.json
:- Откройте файл
package.json
. - Добавьте
"type": "module"
в JSON-структуру:
{ "type": "module" }
- Откройте файл
Создайте файл
index.js
и добавьте следующий код:import { play } from "blum-auto-play"; const authToken = "Bearer <ваш_токен>"; play(authToken);
Добавьте ваш Bearer токен:
- Вставьте ваш Bearer токен вместо
<Bearer token>
в файле index.js.
- Вставьте ваш Bearer токен вместо
Получение Bearer токена
Установите расширение
Resource Override
для ChromeНастройте Resource Override:
- Нажмите кнопку
Add Rule
и выберитеChange Headers
. - В поле
For
введите*
(для удобства). - Нажмите
Edit Headers
и выберите в предустановках:Enable CORS
,Allow Frames
иAllow Outside Content
. - Закройте окно настройки.
- Нажмите кнопку
Откройте Web Telegram и DevTools:
- Перейдите на веб-версию Telegram и откройте DevTools (обычно F12 или Ctrl+Shift+I).
- Запустите Blum и перейдите на вкладку
Network
в DevTools. - Найдите ваш Bearer токен в заголовках запросов.
Копируйте ваш Bearer токен и вставьте его в файл index.js.
Запустите скрипт:
node index.js
Функциональность
- Запускает новую игру.
- Собирает случайное количество очков от 170 до 195.
- Ждет случайное время от 30 до 35 секунд.
- Забирает очки.
- В случае ошибки ждет 5 секунд и пробует снова.
- Если токен недействителен, скрипт выводит ошибку и завершает работу.
- Если билетов 0, скрипт выводит ошибку и завершает работу.
Важно:
После того как вы получили Bearer токен, обязательно отключите расширение Resource Override, чтобы избежать проблем с другими сайтами.