-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.xml
More file actions
58 lines (48 loc) · 1.62 KB
/
Copy pathConfig.xml
File metadata and controls
58 lines (48 loc) · 1.62 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
<configs>
<config>
<name>7 Days To Die</name>
<version>1.0</version>
<author>Domonix</author>
<website>http://sdxmod.com/</website>
<settings>
<setting name="GameDir" label="Game Directory" type="Dir" />
</settings>
<menu>
<item label="Delete backup" action="DeleteBackup" confirm="True" />
<item label="Restore backup" action="RestoreBackup" confirm="True" />
</menu>
<patches>
<class name="GameManager">
<method name="Awake">
<hook type="SDX.Payload.Entry" method="Setup" pos="end" />
</method>
<method name="StartGame">
<hook type="SDX.Payload.ModEngine" method="StartupModScripts" pos="start" />
</method>
</class>
</patches>
</config>
<config>
<name>7 Days To Die Server</name>
<version>1.0</version>
<author>Domonix,Mortelentus</author>
<website>http://sdxmod.com/</website>
<settings>
<setting name="GameDir" label="Game Directory" type="Dir" />
</settings>
<menu>
<item label="Delete backup" action="DeleteBackup" confirm="True" />
<item label="Restore backup" action="RestoreBackup" confirm="True" />
</menu>
<patches>
<class name="GameManager">
<method name="Awake">
<hook type="SDX.Payload.Entry" method="Setup" pos="130" />
</method>
<method name="StartGame">
<hook type="SDX.Payload.ModEngine" method="StartupModScripts" pos="start" />
</method>
</class>
</patches>
</config>
</configs>