Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
hive.c
Go to the documentation of this file.
1 
4 // -------------------------------------------------------------------------
5 class Hive
6 {
7  private void Hive() {}
8  private void ~Hive() {}
9 
10  proto native void InitOnline( string ceSetup, string host = "" );
11  proto native void InitOffline();
12  proto native void InitSandbox();
13 
14  proto native bool IsIdleMode();
15 
16  proto native void SetShardID( string shard );
17  proto native void SetEnviroment( string env );
18 
19  proto native void CharacterSave( Man player );
20  proto native void CharacterKill( Man player );
21  proto native void CharacterExit( Man player );
22 
23  proto native void CallUpdater( string content );
24 
26  proto native bool CharacterIsLoginPositionChanged( Man player );
27 };
28 
29 proto native Hive CreateHive();
30 proto native void DestroyHive();
31 proto native Hive GetHive();
Hive
Definition: hive.c:5
CreateHive
proto native Hive CreateHive()
GetHive
proto native Hive GetHive()
DestroyHive
proto native void DestroyHive()