-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.cpp
More file actions
52 lines (47 loc) · 857 Bytes
/
Copy pathconfig.cpp
File metadata and controls
52 lines (47 loc) · 857 Bytes
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
/*
SPDX-License-Identifier: GPL-3.0-or-later
Copyright (c) 2025 WoozyMasta
Source: https://github.com/woozymasta/metricz
*/
class CfgMods
{
class MetricZ
{
type = "mod";
dir = "metricz";
name = "Prometheus Metrics Exporter for DayZ";
version = "0.1.0";
credits = "WoozyMasta";
author = "WoozyMasta";
authorID = "76561198037610867";
hideName = 1;
hidePicture = 1;
defines[] = {"METRICZ"};
dependencies[] = {"game", "world", "mission"};
class defs
{
class gameScriptModule
{
files[] = {"metricz/scripts/3_game"};
};
class worldScriptModule
{
files[] = { "metricz/scripts/4_world" };
};
class missionScriptModule
{
files[] = { "metricz/scripts/5_mission" };
};
};
};
};
class CfgPatches
{
class MetricZ
{
requiredAddons[] = {
"DZ_Data",
"DZ_Scripts",
};
};
};