This repository was archived by the owner on Oct 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
51 lines (42 loc) · 1.41 KB
/
Copy pathrun.bat
File metadata and controls
51 lines (42 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@echo off
title Meganet Bot by @MeoMunDep
color 0A
cd %~dp0
echo Checking for bot updates...
git pull origin main > nul 2>&1
echo Bot updated!
echo Checking configuration files...
if not exist configs.json (
echo {> configs.json
echo "saveNewWallets": true,>> configs.json
echo "saveNewWallets": true,>> configs.json
echo "pingInterval": 15000,>> configs.json
echo "delayEachAccount": [5, 8],>> configs.json
echo "howManyAccountsRunInOneTime": 100,>> configs.json
echo "howManyNewWalletsToCreate": 100,>> configs.json
echo "referralCodes": [""]>> configs.json
echo }>> configs.json
echo Created configs.json
)
(for %%F in (privateKeys.txt proxies.txt) do (
if not exist %%F (
type nul > %%F
echo Created %%F
)
))
echo Configuration files checked.
echo Checking dependencies...
if exist "..\node_modules" (
echo Using node_modules from parent directory...
cd ..
CALL npm install --no-audit --no-fund --prefer-offline --force user-agents axios meo-forkcy-colors meo-forkcy-utils meo-forkcy-proxy meo-forkcy-logger ws
cd %~dp0
) else (
echo Installing dependencies in current directory...
CALL npm install --no-audit --no-fund --prefer-offline --force user-agents axios meo-forkcy-colors meo-forkcy-utils meo-forkcy-proxy meo-forkcy-logger ws
)
echo Dependencies installation completed!
echo Starting the bot...
node meomundep
pause
exit