-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhost.sh
executable file
·42 lines (31 loc) · 1.05 KB
/
host.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
tag=1v1
nplayers=2
name=tg
wizard=sorcha
level=5
souls=12
map=--map-list=lists/maps-tg-1v1.txt
# map=--map-list=maps-2v2.txt
# map=--map-list=maps-3ffa.txt
# map=--map-list=maps-5ffa.txt
# map=--map-list=maps-3v3.txt
# map='maps/(2) Ferry.scp'
# map='maps/(2) EM-Greed.scp'
# map='maps/(2) WM-ColdKiss.scp'
# map='maps/(2) TM-Chain of Being.scp'
# map='maps/(2) TM-Glaciers.scp'
# map='maps/(2) Oval kopia.scp'
# map='maps/(2) Pure 1on1 1.scp'
# map='maps/(3) Gladiator.scp'
# map='maps/(3) Rotation.scp'
# map='maps/(4) EM-Slaughter Only.scp'
# map='maps/(4) Ferry.scp'
# map='maps/(5) Vampire Planet.scp'
# map='maps/(5) Flower Power.scp'
date=$(date +%Y-%m-%d-%H-%M-%S)
args=(--name="$name" --host="$nplayers" --resolution=2160 --level="$level" --souls="$souls" --wizard="$wizard" --record=replays/"$tag"-"$date".rcp --random-gods --shuffle-sides "$map" "$@")
echo "${args[@]}"
./run-current.sh "${args[@]}"
# ./build-release.sh && ./run.sh "${args[@]}"
# ./build-ldc.sh && ./run.sh "${args[@]}"
# wine explorer /desktop=1920x1080 SacEngine-current.exe "${args[@]}"