-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathserverConfigArma3.ftl
More file actions
44 lines (38 loc) · 1.09 KB
/
serverConfigArma3.ftl
File metadata and controls
44 lines (38 loc) · 1.09 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
<#-- @ftlvariable name="" type="cz.forgottenempire.servermanager.serverinstance.entities.Arma3Server" -->
// GLOBAL SETTINGS
hostname = "${name}";
password = "${password!}";
passwordAdmin = "${adminPassword!}";
// JOINING RULES
maxPlayers = ${maxPlayers};
kickDuplicate = 1;
verifySignatures = <#if verifySignatures>2<#else>0</#if>;
allowedFilePatching = <#if clientFilePatching>2<#else>0</#if>;
// INGAME SETTINGS
disableVoN = ${vonEnabled?then('0', '1')};
vonCodec = 1;
vonCodecQuality = 30;
persistent = ${persistent?then('1', '0')};
timeStampFormat = "short";
BattlEye = ${battlEye?then('1', '0')};
// SIGNATURE VERIFICATION
onUnsignedData = "kick (_this select 0)";
onHackedData = "kick (_this select 0)";
onDifferentData = "";
<#if scenarioRotation?has_content>
// SCENARIO ROTATION
<#assign scenarios = scenarioRotation?split(";")>
<#assign index = 0>
class Missions
{
<#list scenarios as scenario>
class Mission${index}
{
template = "${scenario?replace(".pbo", "")}";
difficulty = "CUSTOM";
};
<#assign index = index + 1>
</#list>
};
</#if>
${additionalOptions!}