@elaska loadingâ€Ļloadingâ€Ļ
bellwhat's new?

loading. . .

welcome to my online realm𝟅𝟈
elaska.exe
—online
—members
(async () => { const onlineEl = document.getElementById('dc-online'); const membersEl = document.getElementById('dc-members'); const dot = document.getElementById('dc-dot'); try { const r = await fetch( 'https://discord.com/api/v9/invites/e4wchcpwkC?with_counts=true', { cache: 'no-store' } ); if (!r.ok) throw 0; const j = await r.json(); const online = j.approximate_presence_count || j.presence_count || (j.guild && j.guild.presence_count); const members = j.approximate_member_count || j.member_count || (j.guild && j.guild.member_count); if (online != null && members != null) { onlineEl.textContent = online; membersEl.textContent = members; dot.style.background = '#a0a0a0'; return; } throw 0; } catch (e) { onlineEl.textContent = 'offline'; membersEl.textContent = '—'; dot.style.background = '#9ca3af'; } })();
elaska