|
1
|
|
{
|
|
2
|
|
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
|
|
3
|
|
"meta": {
|
|
展开 298 行未改动
|
|
4
|
|
"version": "PTDL_v2",
|
|
5
|
|
"update_url": "https://eggs.pterodactyl.top/eggs/132/download/egg-v-rising-bepinex.json"
|
|
6
|
|
},
|
|
7
|
|
"exported_at": "2024-12-26T10:54:32+01:00",
|
|
8
|
|
"name": "V Rising BepInEx",
|
|
9
|
|
"author": "red_thirten@yahoo.com",
|
|
10
|
|
"description": "Awaken as a vampire. Hunt for blood in nearby settlements to regain your strength and evade the scorching sun to survive. Raise your castle and thrive in an ever-changing open world full of mystery. Gain allies online and conquer the land of the living.",
|
|
11
|
|
"features": [
|
|
12
|
|
"steam_disk_space"
|
|
13
|
|
],
|
|
14
|
|
"docker_images": {
|
|
15
|
|
"registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:wine_staging": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:wine_staging"
|
|
16
|
|
},
|
|
17
|
|
"file_denylist": [],
|
|
18
|
|
"startup": "WINEDLLOVERRIDES=\"winhttp=n,b\"; xvfb-run wine ./VRisingServer.exe -persistentDataPath save-data -address 0.0.0.0",
|
|
19
|
|
"config": {
|
|
20
|
|
"files": "{\r\n \"save-data/Settings/ServerHostSettings.json\": {\r\n \"parser\": \"json\",\r\n \"find\": {\r\n \"Name\": \"{{server.build.env.SERVER_NAME}}\",\r\n \"Description\": \"{{server.build.env.DESCRIPTION}}\",\r\n \"Port\": \"{{server.build.default.port}}\",\r\n \"QueryPort\": \"{{server.build.env.QUERY_PORT}}\",\r\n \"MaxConnectedUsers\": \"{{server.build.env.MAX_PLAYERS}}\",\r\n \"MaxConnectedAdmins\": \"{{server.build.env.MAX_ADMINS}}\",\r\n \"ServerFps\": \"{{server.build.env.FPS}}\",\r\n \"SaveName\": \"{{server.build.env.SAVE_NAME}}\",\r\n \"Password\": \"{{server.build.env.SERVER_PASSWORD}}\",\r\n \"Secure\": \"{{server.build.env.SERVER_SECURE}}\",\r\n \"ListOnSteam\": \"{{server.build.env.SERVER_LIST}}\",\r\n \"ListOnEOS\": \"{{server.build.env.SERVER_LIST}}\",\r\n \"AutoSaveCount\": \"{{server.build.env.SAVE_COUNT}}\",\r\n \"AutoSaveInterval\": \"{{server.build.env.SAVE_INTERVAL}}\",\r\n \"GameSettingsPreset\": \"{{server.build.env.GAME_SETTINGS_PRESET}}\",\r\n \"AdminOnlyDebugEvents\": \"{{server.build.env.ADMIN_ONLY_DEBUG_EVENTS}}\",\r\n \"DisableDebugEvents\": \"{{server.build.env.DEBUG_EVENTS}}\",\r\n \"Rcon.Enabled\": \"{{server.build.env.RCON}}\",\r\n \"Rcon.Password\": \"{{server.build.env.RCON_PASS}}\",\r\n \"Rcon.Port\": \"{{server.build.env.RCON_PORT}}\"\r\n }\r\n }\r\n}",
|
|
21
|
|
"startup": "{\r\n \"done\": \"Loaded ServerGameSettings\"\r\n}",
|
|
22
|
|
"logs": "{}",
|
|
23
|
|
"stop": "^C"
|
|
24
|
|
},
|
|
25
|
|
"scripts": {
|
|
26
|
|
"installation": {
|
|
27
|
|
"script": "#!/bin/bash\r\n\r\n## File: Pterodactyl V Rising Egg - egg-v-rising.json\r\n## Authors: David Wolfe (Red-Thirten), Kapatheus\r\n## Date: 2022/05/28\r\n## License: MIT License\r\n## Image to install with is 'registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian'\r\n\r\nclear\r\nRED='\\033[0;31m'\r\nGREEN='\\033[0;32m'\r\nYELLOW='\\033[1;33m'\r\nBLUE='\\033[0;34m'\r\nNC='\\033[0m'\r\n\r\n# Install packages. Default packages below are skipped if using image noted above, thus speeding up the install process.\r\napt -y update\r\napt -y --no-install-recommends install curl jq unzip wget\r\n# Download and install SteamCMD\r\necho -e \"${YELLOW}download and install steamcmd${NC}\"\r\n\r\nexport HOME=/mnt/server\r\ncd /tmp\r\nmkdir -p $HOME/steamcmd $HOME/steamapps\r\ncurl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C $HOME/steamcmd\r\ncd $HOME/steamcmd\r\n\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root /mnt\r\n\r\n# Install game server using SteamCMD\r\necho -e \"${YELLOW}install V Rising with SteamCMD${NC}\"\r\n\r\n./steamcmd.sh +force_install_dir $HOME +login anonymous $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} +quit\r\n\r\n# Set up 32 and 64 bit libraries\r\nmkdir -p $HOME/.steam/sdk{32,64}\r\ncp -v linux32/steamclient.so $HOME/.steam/sdk32/steamclient.so\r\ncp -v linux64/steamclient.so $HOME/.steam/sdk64/steamclient.so\r\n\r\n# Enable BEPINEX (Credits to: https://github.com/ricin/vrising-bepinex-linux/blob/main/scripts/start-server.sh)\r\necho -e \"${YELLOW}installing BepInex${NC}\"\r\n\r\n#variables\r\nBEPINEX_VR_TS_URL=https://v-rising.thunderstore.io/package/BepInEx/BepInExPack_V_Rising/\r\nCUR_V=\"$(find ${HOME} -maxdepth 1 -name \"BepInEx-*\" | cut -d '-' -f2)\"\r\nBEPINEX_VR_API_DATA=\"$(curl -s -X GET https://thunderstore.io/c/v-rising/api/v1/package/b86fcaaf-297a-45c8-82a0-fcbd7806fdc4/ -H \"accept: application/json\")\"\r\nLAT_V=\"$(echo ${BEPINEX_VR_API_DATA} | jq -r '.versions[0].version_number')\"\r\n\r\nif [ -z \"${LAT_V}\" ] && [ -z \"${CUR_V}\" ]; then\r\n echo -e \"${RED}Can't get latest version of BepInEx for V Rising!${NC}\"\r\n echo -e \"${RED}Please try to run without BepInEx for V Rising. Exiting.${NC}\"\r\n exit 1\r\nfi\r\n\r\nif [ -f ${HOME}/BepInEx.zip ]; then\r\n rm -rf ${HOME}/BepInEx.zip\r\nfi\r\nif [ -f ${HOME}/doorstop_config.ini ]; then\r\n sed -i \"/enabled=false/c\\enabled=true\" ${HOME}/doorstop_config.ini\r\nfi\r\n\r\necho -e \"${YELLOW}BepInEx for V Rising Version Check${NC}\"\r\necho -e \"${YELLOW}More info: ${BEPINEX_VR_TS_URL}${NC}\"\r\n\r\nBEPINEX_VR_TS_DOWNLOAD_URL=\"$(echo ${BEPINEX_VR_API_DATA} | jq -r '.versions[0].download_url')\"\r\nif [ -z \"${CUR_V}\" ]; then\r\n echo -e \"${YELLOW}BepInEx for V Rising not found, downloading and installing v${LAT_V} ...${NC}\"\r\n \r\n cd ${HOME}\r\n rm -rf ${HOME}/BepInEx-*\r\n if wget -q -nc --show-progress --progress=bar:force:noscroll -O ${HOME}/BepInEx.zip --user-agent=Mozilla --content-disposition -E -c \"${BEPINEX_VR_TS_DOWNLOAD_URL}\" ; then\r\n echo -e \"${GREEN}Successfully downloaded BepInEx for V Rising v${LAT_V}${NC}\"\r\n else\r\n echo -e \"${RED}Something went wrong, can't download BepInEx for V Rising v${LAT_V}. Exiting.${NC}\"\r\n exit 1\r\n fi\r\n \r\n mkdir -p /tmp/BepInEx\r\n unzip -o ${HOME}/BepInEx.zip -d /tmp/BepInEx\r\n if [ $? -eq 0 ];then\r\n touch ${HOME}/BepInEx-${LAT_V}\r\n cp -rf /tmp/BepInEx/BepInEx*/* ${HOME}/\r\n cp /tmp/BepInEx/README* ${HOME}/README_BepInEx_for_VRising.txt\r\n rm -rf ${HOME}/BepInEx.zip /tmp/BepInEx\r\n else\r\n echo -e \"${RED}Unable to unzip BepInEx archive! Exiting.${NC}\"\r\n exit 1\r\n fi\r\nelif [ \"$CUR_V\" != \"${LAT_V}\" ]; then\r\n echo -e \"${YELLOW}Version missmatch, BepInEx v$CUR_V installed, downloading and installing v${LAT_V} ...${NC}\"\r\n \r\n cd ${HOME}\r\n rm -rf ${HOME}/BepInEx-$CUR_V\r\n mkdir /tmp/Backup\r\n cp -R ${HOME}/BepInEx/config /tmp/Backup/\r\n if wget -q -nc --show-progress --progress=bar:force:noscroll -O ${HOME}/BepInEx.zip --user-agent=Mozilla --content-disposition -E -c \"${BEPINEX_VR_TS_DOWNLOAD_URL}\" ; then\r\n echo -e \"${GREEN}Successfully downloaded BepInEx for V Rising v${LAT_V}${NC}\"\r\n else\r\n echo -e \"${RED}Unable to download BepInEx for V Rising v${LAT_V}. Exiting.${NC}\"\r\n exit 1\r\n fi\r\n \r\n unzip -o ${HOME}/BepInEx.zip -d /tmp/BepInEx \r\n \r\n if [ $? -eq 0 ];then\r\n cp -rf /tmp/BepInEx/BepInEx*/* ${HOME}/\r\n cp /tmp/BepInEx/README* ${HOME}/README_BepInEx_for_VRising.txt\r\n touch ${HOME}/BepInEx-${LAT_V}\r\n cp -R /tmp/Backup/config ${HOME}/BepInEx/\r\n rm -rf ${HOME}/BepInEx.zip /tmp/BepInEx /tmp/Backup\r\n else\r\n echo -e \"${RED}Unable to unzip BepInEx archive! Exiting.${NC}\"\r\n exit 1\r\n fi\r\nelif [ \"${CUR_V}\" == \"${LAT_V}\" ]; then\r\n echo -e \"${GREEN}BepInEx v$CUR_V up-to-date!${NC}\"\r\nfi\r\n\r\nrm -fR /mnt/server/dotnet\r\n\r\n## V Rising Setup\r\nmkdir -p $HOME/save-data/Settings && cd \"$_\"\r\ncat > ServerHostSettings.json << EOF\r\n{\r\n \"Name\": \"${SERVER_NAME}\",\r\n \"Description\": \"${DESCRIPTION}\",\r\n \"Port\": ${SERVER_PORT},\r\n \"QueryPort\": ${QUERY_PORT},\r\n \"MaxConnectedUsers\": ${MAX_PLAYERS},\r\n \"MaxConnectedAdmins\": ${MAX_ADMINS},\r\n \"ServerFps\": ${FPS},\r\n \"SaveName\": \"${SAVE_NAME}\",\r\n \"Password\": \"${SERVER_PASSWORD}\",\r\n \"Secure\": ${SERVER_SECURE},\r\n \"ListOnMasterServer\": ${SERVER_LIST},\r\n \"AutoSaveCount\": ${SAVE_COUNT},\r\n \"AutoSaveInterval\": ${SAVE_INTERVAL},\r\n \"GameSettingsPreset\": \"${GAME_SETTINGS_PRESET}\",\r\n \"AdminOnlyDebugEvents\": ${ADMIN_ONLY_DEBUG_EVENTS},\r\n \"DisableDebugEvents\": ${DEBUG_EVENTS},\r\n \"Rcon\": {\r\n \"Enabled\": ${RCON},\r\n \"Password\": \"${RCON_PASS}\",\r\n \"Port\": ${RCON_PORT}\r\n }\r\n}\r\nEOF\r\n\r\n## cleanup to prevent errors\r\necho -e \"${BLUE}-------------------------------------------------${NC}\"\r\necho -e \"${RED}deleting old wine dirs... please wait...${NC}\"\r\necho -e \"${BLUE}-------------------------------------------------${NC}\"\r\n\r\nif [ ! -d \"/mnt/server/.wine\" ]; then\r\n rm -fR /mnt/server/.wine\r\n rm -fR /mnt/server/.config\r\n rm -fR /mnt/server/.cache\r\n rm -fR /mnt/server/.local\r\n rm -fR /mnt/server/appcache\r\nfi\r\necho -e \"${GREEN}..done..${NC}\"\r\n\r\necho -e \"${BLUE}-------------------------------------------------${NC}\"\r\necho -e \"${GREEN}Installation completed${NC}\"\r\necho -e \"${BLUE}-------------------------------------------------${NC}\"",
|
|
28
|
|
"container": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian",
|
|
29
|
|
"entrypoint": "/bin/bash"
|
|
30
|
|
}
|
|
31
|
|
},
|
|
32
|
|
"variables": [
|
|
33
|
|
{
|
|
34
|
|
"name": "[REQUIRED] Server Query Port",
|
|
35
|
|
"description": "UDP port for Steam server list features.",
|
|
36
|
|
"env_variable": "QUERY_PORT",
|
|
37
|
|
"default_value": "9877",
|
|
38
|
|
"user_viewable": true,
|
|
39
|
|
"user_editable": false,
|
|
40
|
|
"rules": "required|integer|between:1024,65536",
|
|
41
|
|
"field_type": "text"
|
|
42
|
|
},
|
|
43
|
|
{
|
|
44
|
|
"name": "Automatic Updates",
|
|
45
|
|
"description": "Quickly checks for any server updates on startup, and updates if necessary.",
|
|
46
|
|
"env_variable": "AUTO_UPDATE",
|
|
47
|
|
"default_value": "1",
|
|
48
|
|
"user_viewable": true,
|
|
49
|
|
"user_editable": true,
|
|
50
|
|
"rules": "boolean",
|
|
51
|
|
"field_type": "text"
|
|
52
|
|
},
|
|
53
|
|
{
|
|
54
|
|
"name": "Game Settings Preset",
|
|
55
|
|
"description": "What preset of game settings the server should run. Some settings may not apply after the save file is first created. Leave empty/null if you are using a single-player uploaded save or a custom ServerGameSettings.json file in the `~/save-data/Settings/` directory.",
|
|
56
|
|
"env_variable": "GAME_SETTINGS_PRESET",
|
|
57
|
|
"default_value": "",
|
|
58
|
|
"user_viewable": true,
|
|
59
|
|
"user_editable": true,
|
|
60
|
|
"rules": "nullable|string|in:,DuoPvP,HardcorePvP,Level30PvE,Level30PvP,Level50PvE,Level50PvP,Level70PvE,Level70PvP,SoloPvP,StandardPvE_Easy,StandardPvE_Hard,StandardPvE,StandardPvP_Easy,StandardPvP_Hard,StandardPVP",
|
|
61
|
|
"field_type": "text"
|
|
62
|
|
},
|
|
63
|
|
{
|
|
64
|
|
"name": "Server Name",
|
|
65
|
|
"description": "Name of the server that will appear in the server list.",
|
|
66
|
|
"env_variable": "SERVER_NAME",
|
|
67
|
|
"default_value": "V Rising Dedicated Server",
|
|
68
|
|
"user_viewable": true,
|
|
69
|
|
"user_editable": true,
|
|
70
|
|
"rules": "required|string",
|
|
71
|
|
"field_type": "text"
|
|
72
|
|
},
|
|
73
|
|
{
|
|
74
|
|
"name": "Server Description",
|
|
75
|
|
"description": "Short description of server purpose, rules, and the message of the day.",
|
|
76
|
|
"env_variable": "DESCRIPTION",
|
|
77
|
|
"default_value": "Welcome to the server!",
|
|
78
|
|
"user_viewable": true,
|
|
79
|
|
"user_editable": true,
|
|
80
|
|
"rules": "nullable|string",
|
|
81
|
|
"field_type": "text"
|
|
82
|
|
},
|
|
83
|
|
{
|
|
84
|
|
"name": "Max Connected Users",
|
|
85
|
|
"description": "Max number of concurrent players on the server.",
|
|
86
|
|
"env_variable": "MAX_PLAYERS",
|
|
87
|
|
"default_value": "40",
|
|
88
|
|
"user_viewable": true,
|
|
89
|
|
"user_editable": true,
|
|
90
|
|
"rules": "required|integer|min:1",
|
|
91
|
|
"field_type": "text"
|
|
92
|
|
},
|
|
93
|
|
{
|
|
94
|
|
"name": "Max Connected Admins",
|
|
95
|
|
"description": "Max number of admins to allow connection even when the server is full.",
|
|
96
|
|
"env_variable": "MAX_ADMINS",
|
|
97
|
|
"default_value": "4",
|
|
98
|
|
"user_viewable": true,
|
|
99
|
|
"user_editable": true,
|
|
100
|
|
"rules": "required|integer|min:0",
|
|
101
|
|
"field_type": "text"
|
|
102
|
|
},
|
|
103
|
|
{
|
|
104
|
|
"name": "Server Password",
|
|
105
|
|
"description": "Password required to join the server. Leave blank to have no password.",
|
|
106
|
|
"env_variable": "SERVER_PASSWORD",
|
|
107
|
|
"default_value": "",
|
|
108
|
|
"user_viewable": true,
|
|
109
|
|
"user_editable": true,
|
|
110
|
|
"rules": "nullable|string",
|
|
111
|
|
"field_type": "text"
|
|
112
|
|
},
|
|
113
|
|
{
|
|
114
|
|
"name": "Save Name",
|
|
115
|
|
"description": "Name of save file / directory.",
|
|
116
|
|
"env_variable": "SAVE_NAME",
|
|
117
|
|
"default_value": "world1",
|
|
118
|
|
"user_viewable": true,
|
|
119
|
|
"user_editable": true,
|
|
120
|
|
"rules": "required|string",
|
|
121
|
|
"field_type": "text"
|
|
122
|
|
},
|
|
123
|
|
{
|
|
124
|
|
"name": "Auto Save Count",
|
|
125
|
|
"description": "Number of autosaves to keep.",
|
|
126
|
|
"env_variable": "SAVE_COUNT",
|
|
127
|
|
"default_value": "50",
|
|
128
|
|
"user_viewable": true,
|
|
129
|
|
"user_editable": true,
|
|
130
|
|
"rules": "required|integer|min:0",
|
|
131
|
|
"field_type": "text"
|
|
132
|
|
},
|
|
133
|
|
{
|
|
134
|
|
"name": "Auto Save Interval",
|
|
135
|
|
"description": "Interval in seconds between each autosave.",
|
|
136
|
|
"env_variable": "SAVE_INTERVAL",
|
|
137
|
|
"default_value": "600",
|
|
138
|
|
"user_viewable": true,
|
|
139
|
|
"user_editable": true,
|
|
140
|
|
"rules": "required|integer|min:1",
|
|
141
|
|
"field_type": "text"
|
|
142
|
|
},
|
|
143
|
|
{
|
|
144
|
|
"name": "List On Master Server",
|
|
145
|
|
"description": "Set to true to list on the server list, else set to false.",
|
|
146
|
|
"env_variable": "SERVER_LIST",
|
|
147
|
|
"default_value": "true",
|
|
148
|
|
"user_viewable": true,
|
|
149
|
|
"user_editable": true,
|
|
150
|
|
"rules": "required|string|in:true,false",
|
|
151
|
|
"field_type": "text"
|
|
152
|
|
},
|
|
153
|
|
{
|
|
154
|
|
"name": "[Repair] Validate Server Files",
|
|
155
|
|
"description": "Leave empty (no value) for OFF or type \"true\" or \"1\" for ON. Validates all server files when Automatic Updates is enabled. Note: This will significantly increase server startup times, so it is recommended to only enable this when needed.",
|
|
156
|
|
"env_variable": "VALIDATE",
|
|
157
|
|
"default_value": "",
|
|
158
|
|
"user_viewable": true,
|
|
159
|
|
"user_editable": true,
|
|
160
|
|
"rules": "string|nullable",
|
|
161
|
|
"field_type": "text"
|
|
162
|
|
},
|
|
163
|
|
{
|
|
164
|
|
"name": "[Advanced] Server FPS",
|
|
165
|
|
"description": "How often the server refreshes. (Default: 30)",
|
|
166
|
|
"env_variable": "FPS",
|
|
167
|
|
"default_value": "30",
|
|
168
|
|
"user_viewable": true,
|
|
169
|
|
"user_editable": true,
|
|
170
|
|
"rules": "required|integer|min:1",
|
|
171
|
|
"field_type": "text"
|
|
172
|
|
},
|
|
173
|
|
{
|
|
174
|
|
"name": "[Advanced] Enable RCON",
|
|
175
|
|
"description": "See the following link for info on how to connect and use RCON: https://github.com/StunlockStudios/vrising-dedicated-server-instructions#rcon",
|
|
176
|
|
"env_variable": "RCON",
|
|
177
|
|
"default_value": "false",
|
|
178
|
|
"user_viewable": true,
|
|
179
|
|
"user_editable": true,
|
|
180
|
|
"rules": "required|string|in:true,false",
|
|
181
|
|
"field_type": "text"
|
|
182
|
|
},
|
|
183
|
|
{
|
|
184
|
|
"name": "[Advanced] RCON Password",
|
|
185
|
|
"description": "Password required to connect to RCON if it is enabled.",
|
|
186
|
|
"env_variable": "RCON_PASS",
|
|
187
|
|
"default_value": "somepassword",
|
|
188
|
|
"user_viewable": true,
|
|
189
|
|
"user_editable": true,
|
|
190
|
|
"rules": "required|string",
|
|
191
|
|
"field_type": "text"
|
|
192
|
|
},
|
|
193
|
|
{
|
|
194
|
|
"name": "[Advanced] RCON Port",
|
|
195
|
|
"description": "Port used to connect to RCON. Must be allocated to the server for RCON to work.",
|
|
196
|
|
"env_variable": "RCON_PORT",
|
|
197
|
|
"default_value": "25575",
|
|
198
|
|
"user_viewable": true,
|
|
199
|
|
"user_editable": false,
|
|
200
|
|
"rules": "required|integer|between:1024,65536",
|
|
201
|
|
"field_type": "text"
|
|
202
|
|
},
|
|
203
|
|
{
|
|
204
|
|
"name": "[Advanced] Secure Server",
|
|
205
|
|
"description": "(true or false)",
|
|
206
|
|
"env_variable": "SERVER_SECURE",
|
|
207
|
|
"default_value": "true",
|
|
208
|
|
"user_viewable": true,
|
|
209
|
|
"user_editable": true,
|
|
210
|
|
"rules": "required|string|in:true,false",
|
|
211
|
|
"field_type": "text"
|
|
212
|
|
},
|
|
213
|
|
{
|
|
214
|
|
"name": "[Advanced] Admin Only Debug Events",
|
|
215
|
|
"description": "(true or false)",
|
|
216
|
|
"env_variable": "ADMIN_ONLY_DEBUG_EVENTS",
|
|
217
|
|
"default_value": "true",
|
|
218
|
|
"user_viewable": true,
|
|
219
|
|
"user_editable": true,
|
|
220
|
|
"rules": "required|string|in:true,false",
|
|
221
|
|
"field_type": "text"
|
|
222
|
|
},
|
|
223
|
|
{
|
|
224
|
|
"name": "[Advanced] Disable Debug Events",
|
|
225
|
|
"description": "(true or false)",
|
|
226
|
|
"env_variable": "DEBUG_EVENTS",
|
|
227
|
|
"default_value": "false",
|
|
228
|
|
"user_viewable": true,
|
|
229
|
|
"user_editable": true,
|
|
230
|
|
"rules": "required|string|in:true,false",
|
|
231
|
|
"field_type": "text"
|
|
232
|
|
},
|
|
233
|
|
{
|
|
234
|
|
"name": "[Advanced] V Rising Dedicated Server App ID",
|
|
235
|
|
"description": "Used for installation and updates. Rarely needs to be changed.",
|
|
236
|
|
"env_variable": "SRCDS_APPID",
|
|
237
|
|
"default_value": "1829350",
|
|
238
|
|
"user_viewable": false,
|
|
239
|
|
"user_editable": false,
|
|
240
|
|
"rules": "required|integer",
|
|
241
|
|
"field_type": "text"
|
|
242
|
|
},
|
|
243
|
|
{
|
|
244
|
|
"name": "[Advanced] Use Windows Branch",
|
|
245
|
|
"description": "Tells the installer/updater to only download the Windows branch of the server (the only branch currently available) so that it can run on Wine. Cannot be changed.",
|
|
246
|
|
"env_variable": "WINDOWS_INSTALL",
|
|
247
|
|
"default_value": "1",
|
|
248
|
|
"user_viewable": false,
|
|
249
|
|
"user_editable": false,
|
|
250
|
|
"rules": "required|string|in:1",
|
|
251
|
|
"field_type": "text"
|
|
252
|
|
},
|
|
253
|
|
{
|
|
254
|
|
"name": "WINEDEBUG",
|
|
255
|
|
"description": "",
|
|
256
|
|
"env_variable": "WINEDEBUG",
|
|
257
|
|
"default_value": "-all",
|
|
258
|
|
"user_viewable": false,
|
|
259
|
|
"user_editable": false,
|
|
260
|
|
"rules": "required|string|max:20",
|
|
261
|
|
"field_type": "text"
|
|
262
|
|
},
|
|
263
|
|
{
|
|
264
|
|
"name": "WINEPATH",
|
|
265
|
|
"description": "",
|
|
266
|
|
"env_variable": "WINEPATH",
|
|
267
|
|
"default_value": "/home/container",
|
|
268
|
|
"user_viewable": false,
|
|
269
|
|
"user_editable": false,
|
|
270
|
|
"rules": "required|string|max:20",
|
|
271
|
|
"field_type": "text"
|
|
272
|
|
},
|
|
273
|
|
{
|
|
274
|
|
"name": "XVFB",
|
|
275
|
|
"description": "",
|
|
276
|
|
"env_variable": "XVFB",
|
|
277
|
|
"default_value": "1",
|
|
278
|
|
"user_viewable": false,
|
|
279
|
|
"user_editable": false,
|
|
280
|
|
"rules": "boolean",
|
|
281
|
|
"field_type": "text"
|
|
282
|
|
},
|
|
283
|
|
{
|
|
284
|
|
"name": "WINETRICKS_RUN",
|
|
285
|
|
"description": "",
|
|
286
|
|
"env_variable": "WINETRICKS_RUN",
|
|
287
|
|
"default_value": "mono",
|
|
288
|
|
"user_viewable": false,
|
|
289
|
|
"user_editable": false,
|
|
290
|
|
"rules": "required|string|max:50",
|
|
291
|
|
"field_type": "text"
|
|
292
|
|
},
|
|
293
|
|
{
|
|
294
|
|
"name": "WINEARCH",
|
|
295
|
|
"description": "",
|
|
296
|
|
"env_variable": "WINEARCH",
|
|
297
|
|
"default_value": "win64",
|
|
298
|
|
"user_viewable": false,
|
|
299
|
|
"user_editable": false,
|
|
300
|
|
"rules": "required|string|max:20",
|
|
301
|
|
"field_type": "text"
|
|
302
|
|
}
|
|
303
|
|
]
|
|
304
|
|
}
|