blum-auto-play v1.0.3
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-playpackage:
npm install blum-auto-playConfigure
package.json:- Open
package.json - Add
"type": "module"to the JSON structure:
- Open
{
"type": "module"
}- Create a
index.jsfile 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 tokenand paste it in theindex.jsfile.
- Copy your Blum
Receiving a Bearer token
Install the
Resource Overrideextension for ChromeSet up Resource Override:
- Click the
Add Rulebutton and selectChange Headers. - In the
Forfield, enter*(for convenience). - Click
Edit Headersand select from the presets:Enable CORS,Allow FramesandAllow 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
Networktab 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.jsFunctionality
- 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, чтобы избежать проблем с другими сайтами.
