forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongvinterconfig.json
More file actions
139 lines (139 loc) · 5.25 KB
/
longvinterconfig.json
File metadata and controls
139 lines (139 loc) · 5.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[
{
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"Sets the name shown in the server browser. Don't use OFFICIAL in the name",
"Keywords":"server,name",
"FieldName":"ServerName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gi_advancedsessions.gi_advancedsessions_c.ServerName",
"IncludeInCommandLine":false,
"DefaultValue":"AMP Powered Longvinter Server",
"EnumValues":{}
},
{
"DisplayName":"Server Tag",
"Category":"Server Settings",
"Description":"Sets a single tag that allows for easier search for the server. Don't use OFFICIAL",
"Keywords":"server,tag",
"FieldName":"serverTag",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gi_advancedsessions.gi_advancedsessions_c.serverTag",
"IncludeInCommandLine":false,
"DefaultValue":"Default",
"EnumValues":{}
},
{
"DisplayName":"Password",
"Category":"Server Settings",
"Description":"Sets a password for the server. Default is no password. Use only numbers and letters",
"Keywords":"server,password",
"FieldName":"Password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gi_advancedsessions.gi_advancedsessions_c.Password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Server Admins",
"Category":"Server Settings",
"Description":"Space separated list of EOS IDs for server admins. Press ESC > Options > General in-game to find your EOS ID",
"FieldName":"AdminSteamID",
"Keywords":"admin,ids",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gm_longvinter.gm_longvinter_c.AdminSteamID",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"Server Settings",
"Description":"Maximum number of players that can connect to the server at any given time",
"Keywords":"maximum,players,limit",
"FieldName":"$MaxUsers",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gi_advancedsessions.gi_advancedsessions_c.MaxPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"32",
"Suffix":"players"
},
{
"DisplayName":"MOTD",
"Category":"Server Settings",
"Description":"Sets the server message displayed on signs around the island",
"Keywords":"motd",
"FieldName":"ServerMOTD",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gi_advancedsessions.gi_advancedsessions_c.ServerMOTD",
"IncludeInCommandLine":false,
"DefaultValue":"Welcome to Longvinter Island!",
"EnumValues":{}
},
{
"DisplayName":"Community Website",
"Category":"Server Settings",
"Description":"Sets a website that is displayed in-game alongside the MOTD. The website link can be opened in-game",
"Keywords":"community,website",
"FieldName":"CommunityWebsite",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gi_advancedsessions.gi_advancedsessions_c.CommunityWebsite",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"www.longvinter.com",
"EnumValues":{}
},
{
"DisplayName":"Enable PVP",
"Category":"Server Settings",
"Description":"If enabled, Player vs Player fights will be allowed",
"Keywords":"pvp",
"FieldName":"PVP",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gm_longvinter.gm_longvinter_c.PVP",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Enable Tent Decay",
"Category":"Server Settings",
"Description":"If enabled, tent decay will occur, to ensure there aren't excessive abandoned tents in the server",
"Keywords":"tent,decay",
"FieldName":"TentDecay",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gm_longvinter.gm_longvinter_c.TentDecay",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Maximum Tents Allowed",
"Category":"Server Settings",
"Description":"Maximum number of tents allowed to be placed in the server",
"Keywords":"maximum,tents",
"FieldName":"MaxTents",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/game/blueprints/server/gm_longvinter.gm_longvinter_c.MaxTents",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"Suffix":"tents"
}
]