forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
necesseconfig.json
131 lines (131 loc) · 4.09 KB
/
necesseconfig.json
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
[
{
"DisplayName": "Game Port",
"Category": "Server Settings",
"Description": "",
"FieldName": "$GamePort",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "gport",
"IncludeInCommandLine": false,
"Hidden": true,
"DefaultValue": "14159",
"EnumValues": {}
},
{
"DisplayName": "Players",
"Category": "Server Settings",
"Description": "Number of players allowed to join. Number between 1-250.",
"Keywords": "players slots",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"Required": true,
"ParamFieldName": "slots",
"IncludeInCommandLine": false,
"DefaultValue": "20",
"EnumValues": {},
"Suffix":"players"
},
{
"DisplayName": "Password",
"Category": "Server Settings",
"Description": "Password to join the server.",
"Keywords": "password",
"FieldName": "password",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "password",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Seed",
"Category": "Server Settings",
"Description": "Only used when generating a new world. Leave blank for a random seed.",
"Keywords": "seed",
"FieldName": "seed",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "seed",
"IncludeInCommandLine": true,
"Placeholder": "1234567890",
"DefaultValue": ""
},
{
"DisplayName": "Spawn Guide House",
"Category": "Server Settings",
"Description": "Only used when generating a new world. If checked, a guide house will be added during world generation.",
"Keywords": "guide house",
"FieldName": "guide",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "guide",
"IncludeInCommandLine": true,
"DefaultValue": "y",
"EnumValues": {
"False": "n",
"True": "y"
}
},
{
"DisplayName": "Give Clients Power",
"Category": "Server Settings",
"Description": "If true, clients will have much more power over what hits them, their position etc.",
"Keywords": "client power",
"FieldName": "clientPower",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "giveClientPower",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"false": "false",
"true": "true"
}
},
{
"DisplayName": "Pause When Empty",
"Category": "Server Settings",
"Description": "If enabled, the server will pause when there are no connected players.",
"Keywords": "server pause",
"FieldName": "serverPause",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "svrPause",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"false": "false",
"true": "true"
}
},
{
"DisplayName": "World Name",
"Category": "Server Settings",
"Description": "The world file to load at startup. Recommended to be a single word.",
"Keywords": "world",
"FieldName": "world",
"InputType": "text",
"Required": true,
"IsFlagArgument": false,
"ParamFieldName": "world",
"IncludeInCommandLine": true,
"DefaultValue": "world",
"EnumValues": {}
},
{
"DisplayName": "MOTD",
"Category": "Server Settings",
"Description": "Message to be displayed on server join.",
"Keywords": "motd message",
"FieldName": "motd",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "motd",
"IncludeInCommandLine": false,
"DefaultValue": "Welcome to Necesse",
"EnumValues": {}
}
]