diff --git a/Sources/epoch_code/compile/EPOCH_debugMonitor.sqf b/Sources/epoch_code/compile/EPOCH_debugMonitor.sqf
index 3d2e72cb..3c94a924 100644
--- a/Sources/epoch_code/compile/EPOCH_debugMonitor.sqf
+++ b/Sources/epoch_code/compile/EPOCH_debugMonitor.sqf
@@ -35,6 +35,7 @@ hintSilent parseText format ["
Build: %2
" + _customVars + "
+ Karma: %17
Fatigue: %3
@@ -68,5 +69,6 @@ hintSilent parseText format ["
round diag_fps,
_hours,
round((serverTime/60)-(_hours*60)),
- if (EPOCH_diag_fps isEqualType 0) then [{EPOCH_diag_fps},{"MANIPULATED"}]
+ if (EPOCH_diag_fps isEqualType 0) then [{EPOCH_diag_fps},{"MANIPULATED"}],
+ missionNamespace getVariable ["EPOCH_totalKarma",0]
];
diff --git a/Sources/epoch_code/init/both_init.sqf b/Sources/epoch_code/init/both_init.sqf
index c0fa8715..19d86537 100644
--- a/Sources/epoch_code/init/both_init.sqf
+++ b/Sources/epoch_code/init/both_init.sqf
@@ -62,8 +62,8 @@ EPOCH_customVarsDefaults = [
["Crypto",0,[250000,0]],
["HitPoints",[0,0,0,0],[1,1,1,1]],
["BloodP",100,[190,0]],
+ ["NotUsed",0,[50000,-50000]],
["SpawnArray",[],[]],
- ["Karma",0,[50000,-50000]],
["Alcohol",0,[100,0]],
["Radiation",0,[100,0]],
["Nuisance",0,[100,0]],
diff --git a/Sources/epoch_config/Configs/CfgEpochClient.hpp b/Sources/epoch_config/Configs/CfgEpochClient.hpp
index e9d25a18..84680175 100644
--- a/Sources/epoch_config/Configs/CfgEpochClient.hpp
+++ b/Sources/epoch_config/Configs/CfgEpochClient.hpp
@@ -100,7 +100,7 @@ class CfgEpochClient
{"HitPoints",{0,0,0,0},{1,0,0.5,1,-1,-1}}, // only limits here used for HUD.
{"BloodP",100,{190,0,120,140,70,50}},
{"SpawnArray",{},{}},
- {"Karma",0,{50000,-50000}}, // TODO remove or replace
+ {"NotUsed",0,{50000,-50000}}, // TODO remove or replace
{"Alcohol",0,{100,0,35,55,-1,-1}},
{"Radiation",0,{100,0,35,55,-1,-1}}, // local
{"Nuisance",0,{100,0}},