metaboss
v1.0.2
Published
Metaboss Bot
Downloads
12
Readme
METABOSS BOT
Meta boss auto attack boss bot, What is Metaboss ? Metaboss is tap tap game on telegram that run on TON chain.
Prerequisite
- Node JS (v22.1.0)
- Git
- Metaboss Account
BOT Feature
- Auto attack bos
- Auto claim boss reward
- Auto complete missions
- Auto claim misisons reward
- Auto Start Mining (if unlocked)
- Auto open item on bag (Boss Chest, Mission Reward Chest, Mining Reward)
Register Metaboss Account
- join metaboss on telegram HERE
- Start bot
/start
- play
/play
Set Up And Run
- clone the project
git clone https://github.com/Widiskel/metaboss-bot.git
, or download from RELEASE - run
cd metaboss-bot
. - run
npm install
. - run
cp src/account_tmp.js src/account.js
Since metaboss team add more security to the app, botting is not easy like before, here i will tell you how to run the bot
- Install Telegram Desktop.
- Go to Settings > Advance > Experimental Settings > And enable Webview inspecting.
Also read how to do inspect on your Operating system.
- Now open Metaboss Webview game on your Telegram Desktop.
- On the Webview window right click > inspect (on Windows) or open Safari > Develop > Your Device > Telegram (on Mac)
- On Inspect Element or Developer Tools > go to Network tab > find the game socket
- Now refresh the Metaboss Webview on your Telegram Desktop.
- Back to Developer Tools > Network tab > game socket You will see something like this
- Copy the data that contains your account data
- Now open
account.js
and fill up or paste your data using template data provided
const account = [
//node js v18
jsonTransformer(
{"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}},
), //account 1
jsonTransformer(
{"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}},
), //account 2
//node js v22
{"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}}, //account1
{"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}}, //account1
//if you use vscode and have prettier extension and enable format on save the json will automatically become like this
{
code: "X",
type: "X",
data: {
id: "X",
username: "X",
hash: "X",
timeAuth: "X",
data: "query_id=...etc",
},
} //account 1
{
code: "X",
type: "X",
data: {
id: "X",
username: "X",
hash: "X",
timeAuth: "X",
data: "query_id=...etc",
},
} //account 2
];
- Finnally run
npm run start
Configure Mining
to configure or decide what mining you want to focused, look at config.js
, change the mine type with type you want, i'm already add description about mining priority on that file. If you not configure it, it will be use the Black Mine as default
How To Update
- run
git pull
- run
npm update
- run the bot again
npm run start
Note
The account data can be expired (query data livetime around 1-2 day), because it have hash
and timeAuth
, so if your run the bot and your username and id is undefined or it stuck on some process (get user info, get boss info etc), you need to get new account data. follow the ## Set Up And Run from no 3
if any error happen please check HERE check the commit if any new commit, then update the bot.
remember to not open telegram metaboss game while the bot running cause it may cause bot freeze.