This repository was archived by the owner on Oct 30, 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
70 lines (60 loc) · 1.88 KB
/
run.bat
File metadata and controls
70 lines (60 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@echo off
title KiteAI Bot by @MeoMunDep
color 0A
cd %~dp0
echo Checking configuration files...
if not exist configs.json (
(
echo {
echo "skipInvalidProxy": false,
echo "delayEachAccount": [1, 1],
echo "timeToRestartAllAccounts": 300,
echo "howManyAccountsRunInOneTime": 100,
echo "doOnboardingTasks": true,
echo "doDailyQuizz": true,
echo "updateName": true,
echo "chatWithAi": {
echo "enable": true,
echo "amount": 30
echo },
echo "claimBadges": true,
echo "stakeToken": {
echo "enable": true,
echo "amount": [1, 2]
echo },
echo "claimStakeRewards": {
echo "enable": true,
echo "amount": [0.1, 0.2]
echo },
echo "referralCodes": ["DO6Y47C3"],
echo "faucet": {
echo "enable": false,
echo "maxCaptchaAttempts": 20,
echo "2captchaApiKey": ""
echo }
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 user-agents axios meo-forkcy-colors meo-forkcy-utils meo-forkcy-proxy meo-forkcy-logger ethers web3 @faker-js/faker viem
cd %~dp0
) else (
echo Installing dependencies in current directory...
CALL npm install user-agents axios meo-forkcy-colors meo-forkcy-utils meo-forkcy-proxy meo-forkcy-logger ethers web3 @faker-js/faker viem
)
echo Dependencies installation completed!
echo Starting the bot...
node meomundep
pause
exit