// 01
Context before the ban hammer
A ban in Rust should come with context: who the player is, their prior sessions, chat history, and whether similar incidents were handled before. RustCommander keeps that context next to the RCON commands that issue the ban.
// 02
Ban records that stay useful
Tracking which players were banned, when, and by whom protects the server against appeals and future incidents. A persistent ban log is more reliable than Discord history and easier to search when patterns emerge across players.
// 03
When to ban vs kick a player in Rust
Kicks are temporary and typically used for first offenses, lag issues, or warnings. Bans are permanent (or timed) and reserved for cheating, harassment, or repeated rule violations. Having player history in the same panel where bans are issued means moderators can make that judgment based on a record, not an impression from the current session.
// 04
Managing ban appeals and reviewing the ban list
Ban appeals often require proof of what happened and who made the decision. RustCommander keeps a searchable ban log with the acting moderator, reason, and timestamp attached to each entry. When a player disputes a ban, the relevant history is already organized and ready to review.