Debug humanity stat is broken

I dont know if this solve the Problem but try to replace this:
playerstats.sqf
Code:
(player getVariable['zombieKills', 0]),
    (player getVariable['headShots', 0]),
    (player getVariable['humanKills', 0]),
    (player getVariable['banditKills', 0]),
    (player getVariable['humanity', 0]),

with this:
Code:
    (player getVariable["zombieKills", 0]),
    (player getVariable["headShots", 0]),
    (player getVariable["humanKills", 0]),
    (player getVariable["banditKills", 0]),
    (player getVariable["humanity", 0]),

All i've changed is this ' to this " , lets cross fingers :D
 
Nah it didnt do anything and i think the problem lies in the Functions.sqf because im using that debug because it seems there are to different types of debugs through the 2 files but if we cant get the humanity working you wouldent happen to know any other debugs that are the same size with the same stuff?
 
the debug-monitor in dayz of glory seems to be quite similar.

Just a small question:
shouldnt there be space here in your functions.sqf or is it just in the files you have uploaded?

Code:
round _humanity
 
Back
Top