This plugin allows players to contact admins by submitting in-game mail. Players can write a note, store it in a temporary mailbox, and send it. Admins can review all messages in an archive and receive notifications in-game and on Discord.
Permissions
modmail.use
- Allows a player to send mail.modmail.admin
- Allows an admin to open the mail archive.
Commands
/sendmail
- Opens a temporary mailbox where the player can submit a message./openmail
- Opens the admin mail archive, allowing review of all received messages.
Configuration
JSON:
{
"Version": "1.0.0",
"Send Mail Chat Command": "sendmail",
"Open Mail Archive Chat Command": "openmail",
"Maximum Archive Capacity": 48,
"Mail Cooldown Seconds": 60.0,
"Discord Webhook Url": ""
}
Send Mail Chat Command
- The chat command players use to submit mail.Open Mail Archive Chat Command
- The chat command admins use to view the mail archive.Maximum Archive Capacity
- The maximum number of stored messages. Older messages are removed when the limit is reached.Mail Cooldown Seconds
- The cooldown time before a player can send another mail.Discord Webhook Url
- The url for sending mail notifications to Discord. If empty, Discord notifications are disabled.
Stored Data
JSON:
{
"Mails": [
{
"Sender Name": "Player123",
"Sender Id": 76561198000000000,
"Timestamp": "2024-02-23T15:30:00Z",
"Content": "Hello admin, I need help with my base."
},
{
"Sender Name": "Player456",
"Sender Id": 76561198000000001,
"Timestamp": "2024-02-23T16:00:00Z",
"Content": "Can you check on a cheater at my location?"
}
]
}
Localization
JSON:
{
"NoPermission": "You do not have permission to use this command.",
"MailboxCreateFail": "Failed to create mailbox!",
"MailboxOpenPrompt": "Place your note in the mailbox to send to admins.",
"MailArchiveCreateFail": "Failed to create the mail archive container!",
"MailArchiveOpenPrompt": "Opening the mail archive. Feel free to read or take any notes.",
"MailSent": "Thanks! Your note has been sent to the admins.",
"EmptyNote": "Your note is empty. Please type something before sending.",
"NewMailAlert": "New mail received from {0}. Use /openmail to view the archive.",
"DiscordMailAlert": "From: {0} ({1})\nTime: {2}\n```{3}```",
"MailCooldown": "Hold up! You cannot send another mail yet."
}