fix: use vanilla Rust commands, add Give Item + Teleport

Switched to global.kill (vanilla), removed plugin warnings from both
buttons. Added inventory.giveto (prompts shortname + amount) and
entity.teleport (prompts target SteamID). Split actions into two rows:
player actions + admin roles. Added .btn-outline-purple CSS.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-06-13 19:05:25 +02:00
co-authored by Copilot
parent aa9bd725aa
commit 1ecb7488fe
2 changed files with 35 additions and 4 deletions
+12
View File
@@ -61,6 +61,18 @@ a:hover { color: #fff; text-decoration: none; }
color: rgba(255,255,255,0.85);
}
/* Purple outline button */
.btn-outline-purple {
--bs-btn-color: #a78bfa;
--bs-btn-border-color: #a78bfa;
--bs-btn-hover-bg: #a78bfa;
--bs-btn-hover-border-color: #a78bfa;
--bs-btn-hover-color: #fff;
--bs-btn-active-bg: #8b5cf6;
--bs-btn-active-border-color: #8b5cf6;
--bs-btn-active-color: #fff;
}
/* Table styles */
#PlayerListController .table-responsive {
min-height: calc(100vh - 200px);