This Rust plugin lets players with permission skip the connection queue and also gives a short grace period to reconnect instantly after disconnecting.
This stores the last disconnect time (as Unix epoch seconds) for each player. It's used to track whether a player disconnected recently, so they can skip the queue if they reconnect within the configured grace period.
Permissions
queueskip.use- Allows the player to bypass the connection queue and join the server instantly, regardless of their position in the queue.
Configuration
JSON:
{
"Version": "1.0.0",
"Minutes To Rejoin Without Queue After Disconnect (-1 to disable)": 5
}
Minutes To Rejoin Without Queue After Disconnect- Allows players to skip the queue if they reconnect within this time after a disconnect. This helps players who crash, lose connection, or close the game unexpectedly avoid being sent to the back of the queue. Set to-1to disable.
Stored Data
JSON:
{
"Disconnect Epoch By User Id": {
"76561198000000001": 1729993200,
"76561198000000002": 1729993575
}
}