forked from MrNicerDicer/MutantSpawnSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.cpp
More file actions
53 lines (49 loc) · 1.16 KB
/
Copy pathconfig.cpp
File metadata and controls
53 lines (49 loc) · 1.16 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
class CfgPatches
{
class MutantSpawnSystem
{
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
requiredAddons[] = {
"DZ_Data",
"DZ_Scripts",
"DZ_Characters",
"DZ_Characters_Zombies",
"DZ_Animals",
"DZ_AI"
};
author = "MrNicerDicer";
name = "MutantSpawnSystem";
version = "1.0";
serverOnly = 1;
};
};
class CfgMods
{
class MutantSpawnSystem
{
dir = "MutantSpawnSystem";
picture = "";
action = "";
hideName = 1;
hidePicture = 1;
name = "MutantSpawnSystem";
credits = "MrNicerDicer";
author = "MrNicerDicer";
authorID = "0";
version = "2.0";
extra = 0;
type = "mod";
serverOnly = 1;
dependencies[] = {"World", "Mission"};
class defs
{
class worldScriptModule
{
value = "";
files[] = {"MutantSpawnSystem/scripts/4_World"};
};
};
};
};