Nothing Special   »   [go: up one dir, main page]

Skip to content

dzuhri-auto/midas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MIDAS AUTO

MIDAS Telegram Mini App Bot

For README in Bahasa Indonesia: en

Feature

  • Auto Claim Daily Check-in
  • Auto Tap
  • Auto Claim Friend Ref
  • Auto Clear Mission / Tasks
  • Auto Play Game

.env Settings

Name Description Default
API_KEY Custom API KEY
AUTO_PLAY_GAME Enable auto play game True
AUTO_PLAY_GAME Enable auto play game True
USE_RANDOM_DELAY_IN_RUN Activate delay before start the bot True
RANDOM_DELAY_IN_RUN Randomize delay in seconds before start the bot [5, 30]
USE_PROXY_FROM_FILE For using proxy False

Prerequisites

Make sure you already install:

How to obtain Query ID

https://irhamdz.notion.site/Tutorial-Get-Query-ID-f415621d4a9843d2a7a9ad2cfb9abeb4?pvs=74

Request API KEY

This script use custom API KEY, The API KEY itself is for rent only

you can chat me, Irham to ask how much the rent price !

Install

Clone to your PC / VPS:

git clone https://github.com/dzuhri-auto/midas.git

Go inside to the folder:

cd midas

Then use this command for automatic install:

Windows :

windows\install.bat

Mac / Linux / VPS :

sudo chmod +x ubuntu/install.sh ubuntu/run.sh
source ./ubuntu/install.sh

note : dont forget to edit file .env

Update API KEY

After install we can update using API KEY:

Windows :

$filePath = ".env"
$searchPattern = "^API_KEY="
$replacement = 'API_KEY="YOUR API KEY"'

(Get-Content $filePath) -replace $searchPattern + '.*', $replacement | Set-Content $filePath

Mac / Linux / VPS :

sed -i~ '/^API_KEY=/s/=.*/="YOUR API KEY"/' .env

# example if your API KEY = "aisjiqiqssq"
# sed -i~ '/^API_KEY=/s/=.*/="aisjiqiqssq"/' .env

Start Bot

For run the bot:

Windows :

windows\run.bat

Mac / Linux / VPS :

./ubuntu/run.sh