Blue Phoenix Admin Tool diag_log help

SchwEde

OpenDayZ Rockstar!
Hey,

Hope someone can give me some help with this one:
I try to add a diag_log to BP Admin Tool so i can see in the Logs when another Admin is using it.

I tried to add a simple diag_log to the dayesp.sqf:

Code:
if (isNil "builtin_tp") then {builtin_tp = true;};        //Use built-in teleport
if (isNil "alternate_tp") then {alternate_tp = false;};        //Use alternative teleport (could be used to tp on buildings)(not works for vehicles)(credits to monky)
_playerID = getPlayerUID player;
_playerName = name player;
.
.
.
   maphalf = _bigASSmap/2; mapscanrad = sqrt (2*maphalf*maphalf);
    _map = (findDisplay 12) displayCtrl 51;   
    if player_HUD_k then {setGroupIconsVisible [false,true];};
    _playerID = getPlayerUID player;
    _playerName = name player;
    _log_message = format["Test2: %1 (%2)", _playerName, _playerID];
    diag_log _log_message;
    titleText ["Loading tents and helicrashes...","PLAIN DOWN"];titleFadeOut 2;
    helicrashes = nearestObjects [[maphalf,maphalf],["UH1Wreck_DZ"],mapscanrad];
.
.
.

I tried in different ways but without any result.

Thanks for any help

Cheers
 
Code:
diag_log format ["Something = %1 Anotherthing is ℅2", _localvariablethatis%1, _localvariablethatis%2];

Wysłane z mojego Nexus 5
 
i wanted a result somehting similar like this:

Code:
Test: SchwEde (123456) used the admin Tool
 
Back
Top