mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
HC Logging + Fix?
Test please :)
This commit is contained in:
parent
aaec1239fc
commit
8c4e0ff297
@ -15,6 +15,12 @@ EAST setFriend[RESISTANCE,0];
|
|||||||
EAST setFriend[WEST,0];
|
EAST setFriend[WEST,0];
|
||||||
WEST setFriend[EAST,0];
|
WEST setFriend[EAST,0];
|
||||||
|
|
||||||
|
"DMS_HC_INIT" addPublicVariableEventHandler
|
||||||
|
{
|
||||||
|
DMS_HC_Object = _this select 1 select 0;
|
||||||
|
diag_log format ["DMS Headless Client :: DMS_HC_Object = %1 | serverTime: %2",DMS_HC_Object,(_this select 1 select 1)];
|
||||||
|
};
|
||||||
|
|
||||||
if(DMS_StaticMission) then {
|
if(DMS_StaticMission) then {
|
||||||
call compileFinal preprocessFileLineNumbers "\x\addons\dms\static\static_init.sqf";//<---- TODO
|
call compileFinal preprocessFileLineNumbers "\x\addons\dms\static\static_init.sqf";//<---- TODO
|
||||||
};
|
};
|
||||||
|
@ -19,6 +19,10 @@ if !(DMS_ai_offload_to_client) exitWith {};
|
|||||||
{
|
{
|
||||||
if (isNull DMS_HC_Object) then
|
if (isNull DMS_HC_Object) then
|
||||||
{
|
{
|
||||||
|
if (DMS_DEBUG) then
|
||||||
|
{
|
||||||
|
diag_log format ["DMS_DEBUG AILocalityManager :: DMS_HC_Object is null! Finding owner for group: %1",_group];
|
||||||
|
};
|
||||||
_owner = objNull;
|
_owner = objNull;
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -39,7 +43,7 @@ if !(DMS_ai_offload_to_client) exitWith {};
|
|||||||
{
|
{
|
||||||
if (DMS_DEBUG) then
|
if (DMS_DEBUG) then
|
||||||
{
|
{
|
||||||
diag_log format ["Setting ownership of group %1 to HC (%2)",_group,DMS_HC_Object];
|
diag_log format ["DMS_DEBUG AILocalityManager :: Setting ownership of group %1 to HC (%2)",_group,DMS_HC_Object];
|
||||||
};
|
};
|
||||||
_group setGroupOwner (owner DMS_HC_Object);
|
_group setGroupOwner (owner DMS_HC_Object);
|
||||||
};
|
};
|
||||||
|
10
README.md
10
README.md
@ -15,10 +15,14 @@ Repack the a3_dms folder with a PBO tool and follow the "To install:" steps :D
|
|||||||
|
|
||||||
|
|
||||||
HEADLESS CLIENT:
|
HEADLESS CLIENT:
|
||||||
Add this code to the TOP if your initPlayerLocal.sqf
|
Add this code to the TOP of your initPlayerLocal.sqf
|
||||||
|
|
||||||
if (!hasInterface && !isServer) then
|
if (!hasInterface && !isServer) then
|
||||||
{
|
{
|
||||||
DMS_HC_Object = player;
|
1 spawn
|
||||||
publicVariableServer "DMS_HC_Object";
|
{
|
||||||
|
waitUntil {player==player};
|
||||||
|
DMS_HC_INIT = [player,serverTime];
|
||||||
|
publicVariableServer "DMS_HC_INIT";
|
||||||
|
};
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user