-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathderanker.sh
More file actions
75 lines (64 loc) · 2.41 KB
/
deranker.sh
File metadata and controls
75 lines (64 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
#edit the top part if you have a different bash directory
#use the command "which bash" to find out
#Steam Launcher for Deranking
#Launches 5 csgo instances with different users
#To use this script, create 5 user accounts and input its usernames below
ACCOUNT1="steam1"
ACCOUNT2="steam2"
ACCOUNT3="steam3"
ACCOUNT4="steam4"
#LOOP is the number of other user accounts you want to use, without the current logged in user
LOOP=4
#If you are using a different terminal, check the echo in launchsteam function
#mate-terminal is the default terminal for Linux Mint
TERMINALNAME="mate-terminal"
function disableaccesscontrol {
echo "disabling access control, clients should be able to connect from any host"
echo "Enter current user's password"
#disables access control, allows clients to connect to current user's DE
echo `xhost +`
sleep 1s
}
function launchsteam {
echo "Launching CS:GO Accounts"
echo "Opening $LOOP instances of Terminal"
echo "Enter the passwords for the accounts"
sleep 1s
#Use LOOPCOUNT = 1 to skip the current logged in user
LOOPCOUNT=0
while [ $LOOPCOUNT -le $LOOP ]; do
# the command: "su -l $ACCOUNTNAME -c "steam -applaunch 730"" is used to launch csgo via terminal
#the command: mate-terminal -x
#executes it to our terminal of choice
echo "Terminal Instance: $LOOPCOUNT"
case $LOOPCOUNT in
0) echo `$TERMINALNAME -x steam -applaunch 730`;;
1) echo `$TERMINALNAME -x su -l $ACCOUNT1 -c "steam -applaunch 730"`;;
2) echo `$TERMINALNAME -x su -l $ACCOUNT2 -c "steam -applaunch 730"`;;
3) echo `$TERMINALNAME -x su -l $ACCOUNT3 -c "steam -applaunch 730"`;;
4) echo `$TERMINALNAME -x su -l $ACCOUNT4 -c "steam -applaunch 730"`;;
*) outofbounds
esac
sleep 30s #delay allows you to input the password and launch CSGO properly
removelockfiles
let LOOPCOUNT=LOOPCOUNT+1
done
}
function removelockfiles {
echo "Deleting lock files."
echo `sudo rm -f /tmp/*.lock`
}
function outofbounds {
echo "LOOP value out of bounds, set it to a maximum of 4."
echo "Remember, current user is still counted as one user."
exit
}
function introduction {
echo "This script launches 5 instances of steam using different linux users"
echo "Bash script created by Jon Marco Reyes"
}
#FUNCTION CALLS
introduction
disableaccesscontrol
launchsteam