-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.cpp
101 lines (95 loc) · 1.8 KB
/
config.cpp
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
/*
CREATED BY PACKJC
https://github.com/PackJC/gebsfish
https://steamcommunity.com/sharedfiles/filedetails/?id=2757509117
https://discord.com/invite/G8uSGZ8yyf
Contributions welcome via github
*/
class CfgPatches
{
class gebsfish
{
requiredAddons[]=
{
"DZ_Data",
"DZ_Scripts"
};
};
};
class CfgMods
{
class gebsfish
{
dir="gebsfish";
picture = "gebsfish\data\logo.paa"; // picture in expanded description
logoSmall = "gebsfish\data\logo.paa"; // icon next to mod name when description is not expanded
logo = "gebsfish\data\logo.paa"; // logo below game menu
logoHover = "gebsfish\data\logo_hover.paa"; // logo hovered
overview = "DayZ Fish Expansion";
action="";
name="gebsfish";
creditsJson = "gebsfish/Scripts/Credits.json";
author="Geb";
authorID="0";
version="1.26";
extra=0;
type="mod";
dependencies[]=
{
"Game",
"World",
"Mission"
};
defines[]=
{
"Gebsfish",
"GEBSFISH"
};
class defs
{
class gameScriptModule
{
value="";
files[]=
{
"gebsfish\scripts\3_Game"
};
};
class worldScriptModule
{
value="";
files[]=
{
"gebsfish\scripts\4_world"
};
};
class missionScriptModule
{
value = "";
files[] =
{
"gebsfish\scripts\5_mission"
};
};
};
};
};
class CfgSoundSets {
class PredatorWarning_SoundSet {
soundShaders[] = { "PredatorWarning_SoundShader" };
volumeFactor = 1.0;
spatial = 1;
doppler = 0;
loop = 0;
};
};
class CfgSoundShaders {
class PredatorWarning_SoundShader {
samples[] = {
{ "gebsfish\data\sounds\predator.ogg", 1 },
{ "gebsfish\data\sounds\loon-wail-3x.ogg", 1 } ,
{ "gebsfish\data\sounds\loon-short-warning.ogg", 1 }
};
volume = 1.0;
};
};