mirror of
https://github.com/DoubleRepo/PersistentTreeLogging.git
synced 2024-08-30 16:52:16 +00:00
Add files via upload
This commit is contained in:
5
Server Addon/TreeLogging/bootstrap/fn_postInit.sqf
Normal file
5
Server Addon/TreeLogging/bootstrap/fn_postInit.sqf
Normal file
@ -0,0 +1,5 @@
|
||||
"TreeLogging PostInit started..." call ExileServer_TreeLogging_log;
|
||||
|
||||
[] call ExileServer_world_loadAllDatabaseTrees;
|
||||
|
||||
"TreeLogging PostInit finished..." call ExileServer_TreeLogging_log;
|
14
Server Addon/TreeLogging/bootstrap/fn_preInit.sqf
Normal file
14
Server Addon/TreeLogging/bootstrap/fn_preInit.sqf
Normal 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;
|
Reference in New Issue
Block a user