blob: 8c19038b341f8b551e763737cb7e1779f4fa7abe (
plain)
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
|
##
## install.sh -- install script for ut1999-chaosut
##
## post_install NEW_VERSION
post_install() {
cat << __EOF__
In order to run a ChaosUT server, add the following lines to the
respective sections in your UnrealTournament.ini:
[Engine.GameEngine]
ServerPackages=UTChaosMap
ServerPackages=ChaosUTRHUD
ServerPackages=ChaosUT
ServerPackages=ChaosUTMiscMuts
ServerPackages=ChaosGames
__EOF__
}
## post_remove OLD_VERSION
post_remove() {
cat << __EOF__
Remove the following lines from the respective sections in your
UnrealTournament.ini:
[Engine.GameEngine]
ServerPackages=UTChaosMap
ServerPackages=ChaosUTRHUD
ServerPackages=ChaosUT
ServerPackages=ChaosUTMiscMuts
ServerPackages=ChaosGames
__EOF__
}
|