Added button group below stats: Kill, Heal, Moderator, Owner.
- Kill/Heal are plugin-dependent (kill/heal commands)
- Moderator/Owner are standard Rust RCON (moderatorid/ownerid)
- Buttons hidden until player is confirmed online
- Confirm dialogs on all destructive actions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Rust RCON returns Position as {x, y, z} object. Now formatted as
'x:123.4 y:56.7 z:89.0' instead of the default toString() garbage.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Added maskIp() helper that replaces IPs with ••••••••. A global
delegated click handler reveals the address on click. Applied to:
- Player list 'Address' column
- Player info 'Address' field
Styled .ip-masked with dimmed text and purple hover glow.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
SteamID from RCON JSON is parsed as a Number, but the URL param
from the regex match is a string. Strict === comparison always fails.
Changed to String() coercion so types match.
Also fixes subtle issue with large SteamID64 values exceeding
MAX_SAFE_INTEGER — string comparison avoids precision loss.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- 'Loading…' shown in charts/fields/output areas while waiting for server response
- Console + chat: clears loading state on first output line
- Player list: table body shows loading row until refresh completes
- Player info / Server info: fields show loading until data arrives
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>