-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample
30 lines (26 loc) · 1.23 KB
/
example
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
#!/usr/bin/env bash
# UO_SHARD_NAME - Name of your UO Shard.
# UO_SHARD_ROOT - Path to access the Manifest and Hashes file.
# UO_SHARD_PORT - Port to access the patch.
UO_SHARD_NAME="My UO Shard"
UO_SHARD_ROOT="http://patch.example.com/patches"
UO_SHARD_PORT="2595"
# UO_SHARD_CLIENT - Executable / Client to be launched.
# UO_SHARD_CLIENT_DIR - Directory relative to UO_SHARD_ROOT
# hosting the UO_SHARD_CLIENT.
# UO_SHARD_CLIENT_FLAGS - Any special flags to pass to the
# UO_SHARD_CLIENT at startup.
UO_SHARD_CLIENT="ClassicUO.exe"
UO_SHARD_CLIENT_DIR="ClassicUO"
UO_SHARD_CLIENT_FLAGS="-force_driver 1"
# UO_SHARD_LAUNCHER - Executable / Launcher to be launched.
# UO_SHARD_LAUNCHER_DIR - Directory relative to UO_SHARD_ROOT
# hosting the UO_SHARD_LAUNCHER.
# UO_SHARD_LAUNCHER_FLAGS - Any special flags to pass to the
# UO_SHARD_LAUNCHER at startup.
UO_SHARD_LAUNCHER="ClassicUOLauncher.exe"
UO_SHARD_LAUNCHER_DIR="."
UO_SHARD_LAUNCHER_FLAGS="-force_driver 1"
# WINETRICKS_PACKAGES - Packages Winetricks needs to install to
# run the client successfully with Wine.
WINETRICKS_PACKAGES=("dotnet48" "corefonts")