This repository was archived by the owner on Dec 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBing Bot Auto.bat
89 lines (71 loc) · 1.49 KB
/
Bing Bot Auto.bat
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@ECHO OFF
REM BFCPEOPTIONSTART
REM Advanced BAT to EXE Converter www.BatToExeConverter.com
REM BFCPEEXE=E:\Bing Bot.exe
REM BFCPEICON=D:\Downloads\icons8-bing-96.ico
REM BFCPEICONINDEX=1
REM BFCPEEMBEDDISPLAY=0
REM BFCPEEMBEDDELETE=1
REM BFCPEADMINEXE=0
REM BFCPEINVISEXE=0
REM BFCPEVERINCLUDE=1
REM BFCPEVERVERSION=1.0.0.0
REM BFCPEVERPRODUCT=Bing Bot
REM BFCPEVERDESC=Bing Rewards Bot to automate searches.
REM BFCPEVERCOMPANY=DJMC
REM BFCPEVERCOPYRIGHT=LOL
REM BFCPEOPTIONEND
@ECHO ON
@echo OFF & setlocal enabledelayedexpansion
set ver=VERSION 6A
:menu
title Bing Bot [%ver%]
mode con:cols=40 lines=2
rem CenterSelf
rem CursorHide
cls
set made=0
set total=0
ECHO. %ver% BY MATT CLARK WITH LOVE
timeout 5 > nul
set browser=chrome.exe https://www.bing.com/search?q=
set BK9=chrome
set BKA=Chrome
set total=60
:count
rem CenterSelf
mode con:cols=30 lines=4
SET /A _wait=%RANDOM%%%9+1
cls
:Count2
SET /a _rand=(%RANDOM%*1000/32768)+1
set /a made=made+1
start %browser%%_rand%
:count3
cls
title %made% of %total% (%_wait%)
echo.%made% Searches Made out of %total%
echo.%_wait% seconds until next search
if %made%==%total% (
goto:done
) else (
goto:wait
)
:wait
set /a _wait=_wait-=1
timeout 1 >nul
if %_wait%==0 (
goto:count
) else (
goto:count3
)
:done
mode con:cols=30 lines=8
title Made %total% searches
cls
echo. Made %total% Searches
echo. Closing Chrome in 5 seconds
timeout 5 >nul
tskill %bk9%
:exit
exit