Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
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  {
15  m_ModIndex = index;
16  m_ModPath = path;
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 
44  string GetModLogoSmall()
45  {
46  return m_ModName;
47  }
48 
49  string GetModLogoOver()
50  {
51  return m_ModName;
52  }
53 
54  string GetModActionURL()
55  {
56  return m_ModName;
57  }
58 
59  string GetModToltip()
60  {
61  return m_ModName;
62  }
63 
64  string GetModOverview()
65  {
66  return m_ModName;
67  }
68 }
GetGame
proto native CGame GetGame()
ModStructure
Definition: modstructure.c:1
path
string path
Definition: optionselectormultistate.c:135