diff --git a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html
index 12a0524..81c8b85 100644
--- a/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html
+++ b/src_mobius/mobius/L2J_Mobius_CT_0_Interlude/dist/game/data/dashboard.html
@@ -38,6 +38,8 @@ canvas{width:100%;height:100%;display:block;background:#0d1014}
@@ -180,6 +182,17 @@ document.getElementById('pGo').onclick=()=>{
})};
refresh();setInterval(refresh,5000);
+function telemetry(){
+ fetch('/api/stats').then(r=>r.json()).then(t=>{
+ const keys=['kills','exp','loot','itemsSold','adenaEarned','adenaSpent','stores','skillsCast','rests','lines','replies','parties','migrations','professions','sieges','pvpKills','deaths'];
+ let h='';
+ keys.forEach(k=>{h+='
'+k+''+(t[k]??0)+'
';});
+ h+='
сейчасбой '+t.fighting+' · сидят '+t.sitting+' · торгуют '+t.trading+' · в пати '+t.inParty+' · на осаде '+t.besieging+'
';
+ h+='
аптайм'+t.uptimeMin+' мин
';
+ document.getElementById('telemetry').innerHTML=h;
+ }).catch(()=>{});
+}
+telemetry();setInterval(telemetry,10000);
window.addEventListener('resize',draw);