-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLimedWebhooks.bat
78 lines (67 loc) · 4.09 KB
/
LimedWebhooks.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
@echo off
chcp 65001
title Limed ~ v1.0 - By: LimeDEVs
color A
:menu
cls
echo ________________________________________
echo ██╗░░░░░██╗███╗░░░███╗███████╗██████╗░
echo ██║░░░░░██║████╗░████║██╔════╝██╔══██╗
echo ██║░░░░░██║██╔████╔██║█████╗░░██║░░██║
echo ██║░░░░░██║██║╚██╔╝██║██╔══╝░░██║░░██║
echo ███████╗██║██║░╚═╝░██║███████╗██████╔╝
echo ╚══════╝╚═╝╚═╝░░░░░╚═╝╚══════╝╚═════╝░
echo ________________________________________
echo q. = Exit
echo !version = Version of Spammer
echo !spam. = Webhook Spammer
echo !roblox = Discord to Roblox
echo ________________________________________
set /p choice=Enter Your Choice:
if "%choice%"=="q" goto :eof
if "%choice%"=="!spam" goto webhookspammer
if "%choice%"=="!version" goto version
if "%choice%"=="!roblox" goto roblox
goto menu
:webhookspammer
cls
echo ____________________________________
echo 0 WEBHOOK SPAMMER 0
echo 0___________________________________0
set /p "webhook=│ Enter Discord webhook URL for Webhook Spmmer: "
set /p "message=│ Enter the message to send: "
set /p "num_times=│ Enter the number of times to send the message: "
for /l %%n in (1,1,%num_times%) do (
:: Send message to Discord webhook
curl -X POST -H "Content-Type: application/json" -d "{\"content\": \"%message%\"}" %webhook%
)
echo Messages sent successfully.
pause
goto menu
:roblox
cls
echo ____________________________________
echo 0 ROBLOX GRABBER 0
echo 0___________________________________0
echo This is provided by BloxLink and this is our own API key!
echo Please do not spam this request or you will be blocked.
set /p "discord=| Enter Discord ID of user: "
curl -H haha use your own :)
echo .
pause
goto menu
:version
cls
echo ________________________________________
echo ██╗░░░░░██╗███╗░░░███╗███████╗██████╗░
echo ██║░░░░░██║████╗░████║██╔════╝██╔══██╗
echo ██║░░░░░██║██╔████╔██║█████╗░░██║░░██║
echo ██║░░░░░██║██║╚██╔╝██║██╔══╝░░██║░░██║
echo ███████╗██║██║░╚═╝░██║███████╗██████╔╝
echo ╚══════╝╚═╝╚═╝░░░░░╚═╝╚══════╝╚═════╝░
echo ________________________________________
echo Version 1.0 ~ Made by: LimeDEVs
echo Need Support: None ATM
echo ________________________________________
pause
goto menu