-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautokick.sh
86 lines (86 loc) · 3.38 KB
/
autokick.sh
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
#!/bin/bash
# Script Created By 24clanSSH.Com
clear
echo -e ""
echo -e "======================================"
echo -e ""
echo -e " AutoKick Created By 24clanSSH.Com "
echo -e ""
echo -e " [1] AutoKick After 5 Minutes"
echo -e " [2] AutoKick After 15 Minutes"
echo -e " [3] AutoKick After 30 Minutes"
echo -e " [4] Turn Off AutoKick/MultiLogin"
echo -e " [x] Exit"
echo -e "======================================"
echo -e ""
read -p " Select From Options [1-4 or x] : " AutoKick
echo -e ""
case $AutoKick in
1)
echo -e ""
sleep 1
clear
rm -f /etc/cron.d/tendang
echo "*/5 * * * * root /usr/bin/tendang" > /etc/cron.d/tendang
echo -e ""
echo -e "======================================"
echo -e " AutoKick Created By 24clanSSH.Com "
echo -e ""
echo -e " Allowed MultiLogin : 2"
echo -e " AutoKick Every : 5 Minutes"
echo -e ""
echo -e "======================================"
exit
;;
2)
echo -e ""
sleep 1
clear
rm -f /etc/cron.d/tendang
echo "*/5 * * * * root /usr/bin/tendang" > /etc/cron.d/tendang
echo -e ""
echo -e "======================================"
echo -e ""
echo -e " AutoKick Created By 24clanSSH.Com "
echo -e ""
echo -e " Allowed MultiLogin : 2"
echo -e " AutoKick Every : 15 Minutes"
echo -e ""
echo -e "======================================"
exit
;;
3)
echo -e ""
sleep 1
clear
rm -f /etc/cron.d/tendang
echo "*/5 * * * * root /usr/bin/tendang" > /etc/cron.d/tendang
echo -e ""
echo -e "======================================"
echo -e ""
echo -e " AutoKick Created By 24clanSSH.Com "
echo -e ""
echo -e " Allowed MultiLogin : 2"
echo -e " AutoKick Every : 30 Minutes"
echo -e ""
echo -e "======================================"
exit
;;
4)
clear
rm -f /etc/cron.d/tendang
echo -e ""
echo -e "======================================"
echo -e ""
echo -e " AutoKick Created By 24clanSSH.Com "
echo -e ""
echo -e " AutoKick MultiLogin Turned Off "
echo -e ""
echo -e "======================================"
exit
;;
x)
clear
exit
;;
esac