Add files via upload

This commit is contained in:
DoubleRepo
2017-12-25 13:33:07 +01:00
committed by GitHub
parent fd240047f7
commit 08d936196e
12 changed files with 281 additions and 1 deletions

View File

@ -0,0 +1,5 @@
"TreeLogging PostInit started..." call ExileServer_TreeLogging_log;
[] call ExileServer_world_loadAllDatabaseTrees;
"TreeLogging PostInit finished..." call ExileServer_TreeLogging_log;

View File

@ -0,0 +1,14 @@
private["_code"];
{
_code = compileFinal (preprocessFileLineNumbers (_x select 1));
missionNamespace setVariable [(_x select 0), _code];
}
forEach
[
['ExileServer_world_loadAllDatabaseTrees', 'TreeLogging\functions\ExileServer_world_loadAllDatabaseTrees.sqf'],
['ExileServer_object_tree_database_load', 'TreeLogging\functions\ExileServer_object_tree_database_load.sqf'],
['ExileServer_TreeLogging_log', 'TreeLogging\functions\ExileServer_TreeLogging_log.sqf']
];
"TreeLogging PreInit finished" call ExileServer_TreeLogging_log;