Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
hive.c
Go to the documentation of this file.
1
3
4// -------------------------------------------------------------------------
5class 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
29proto native Hive CreateHive();
30proto native void DestroyHive();
31proto native Hive GetHive();
Definition hive.c:6
proto native bool CharacterIsLoginPositionChanged(Man player)
Only valid during login.
proto native void InitOffline()
proto native void InitSandbox()
proto native void CharacterKill(Man player)
proto native void InitOnline(string ceSetup, string host="")
proto native void SetEnviroment(string env)
proto native void CharacterSave(Man player)
void Hive()
Definition hive.c:7
proto native void CallUpdater(string content)
void ~Hive()
Definition hive.c:8
proto native void SetShardID(string shard)
proto native bool IsIdleMode()
proto native void CharacterExit(Man player)
proto native Hive CreateHive()
proto native void DestroyHive()
proto native Hive GetHive()