DayZ 1.24
Loading...
Searching...
No Matches
ModStructure.c
Go to the documentation of this file.
2{
3 protected int m_ModIndex;
4 protected string m_ModPath;
5 protected string m_ModName;
6 protected string m_ModLogo;
7 protected string m_ModLogoSmall;
8 protected string m_ModLogoOver;
9 protected string m_ModActionURL;
10 protected string m_ModTooltip;
11 protected string m_ModOverview;
12
13 void ModStructure(int index, string path)
14 {
17 LoadData();
18 }
19
20 void LoadData()
21 {
22 if (GetGame().ConfigIsExisting(m_ModPath))
23 {
24 GetGame().ConfigGetText(m_ModPath + " name", m_ModName);
25 GetGame().ConfigGetText(m_ModPath + " picture", m_ModLogo);
26 GetGame().ConfigGetText(m_ModPath + " logo", m_ModLogoSmall);
27 GetGame().ConfigGetText(m_ModPath + " logoSmall", m_ModLogoOver);
28 GetGame().ConfigGetText(m_ModPath + " logoOver", m_ModActionURL);
29 GetGame().ConfigGetText(m_ModPath + " tooltip", m_ModTooltip);
30 GetGame().ConfigGetText(m_ModPath + " overview", m_ModOverview);
31 }
32 }
33
34 string GetModName()
35 {
36 return m_ModName;
37 }
38
39 string GetModLogo()
40 {
41 return m_ModName;
42 }
43
45 {
46 return m_ModName;
47 }
48
50 {
51 return m_ModName;
52 }
53
55 {
56 return m_ModName;
57 }
58
59 string GetModToltip()
60 {
61 return m_ModName;
62 }
63
65 {
66 return m_ModName;
67 }
68}
string m_ModOverview
string m_ModActionURL
Definition ModStructure.c:9
string GetModActionURL()
void LoadData()
string m_ModLogo
Definition ModStructure.c:6
string GetModLogoOver()
string m_ModPath
Definition ModStructure.c:4
string GetModName()
string GetModToltip()
string GetModLogo()
string GetModOverview()
void ModStructure(int index, string path)
string m_ModTooltip
string m_ModName
Definition ModStructure.c:5
string m_ModLogoOver
Definition ModStructure.c:8
string m_ModLogoSmall
Definition ModStructure.c:7
string GetModLogoSmall()
proto native CGame GetGame()