Another Debug Stats Panel

kaysio

Valued Member!
I cant take credit for all this work,
Ive just nipped & tucked here & there.

The script is originally modded from Matt L's code.
And other bits of scripts, Ive found around BIS forums + OpenDayZ forums.



Download my files and extract the folder into the root mission folder.
Then open your ' fn_selfActions.sqf ' and add the following code.

To be added just after,
'_canDo = (!r_drag_sqf and !r_player_unconscious and !_onLadder);'




Code:
// ------------------------------------------------------------------------DEBUG STATS------------------------------------------------------------------------
if((speed player <= 1) && _canDo) then {
        if (s_player_toggle < 0) then {
              s_player_toggle = player addaction[("<t color=""#c70000"">" + ("Toggle Stats") +"</t>"),"custom_stats\custom_stats.sqf","",5,false,true,"",""];
        };
} else {
                player removeAction s_player_toggle;
                s_player_toggle = -1;
};
// -----------------------------------------------------------------------------------------------------------------------------------------------------------



Download Link : http://www.mediafire.com/download/bjnifnija76jmbx/custom_stats.zip
 
To change the logo,

1. Mission folder > custom_stats folder
2. stats_logo.paa
3. You must keep the same name + also it must be a paa file.



To change info in stats panel,

1. Mission folder > custom_stats folder
2. custom_stats.sqf
3. Change line 51 + 72 to what you want.
 
Back
Top