Allow players to submit posts directly to a Discord forum channel.
A Paper plugin that allows players to submit posts directly to a Discord forum channel. Create bug reports, suggestions, and feedback in-game that automatically appear as organized forum threads in Discord.
plugins folderplugins/ForumPoster/config.ymlbot:
token: "YOUR_BOT_TOKEN_HERE"
url: "https://discord.com/channels/GUILD_ID/CHANNEL_ID"
command:
name: "forumpost"
aliases: ["fp", "postforum"]
categories:
- name: "bug"
display: "Bug Report"
id: 1122334455667788990 # Discord forum tag ID
- name: "suggestion"
display: "Suggestion"
id: 1122334455667788991
status:
statuses: ["PENDING", "IN_PROGRESS", "RESOLVED", "CLOSED"]
default: "PENDING"
| Command | Usage | Description |
|---|---|---|
/forumpost |
/forumpost <category> <message> |
Submit a new report |
/posts |
/posts |
List your reports (or all reports with permission) |
/postinfo |
/postinfo <id> |
View details about a specific report |
/setstatus |
/setstatus <id> <status> |
Change a report's status |
/deletepost |
/deletepost <id> |
Delete a report |
/tppost |
/tppost <id> |
Teleport to where a report was made |
/fpreload |
/fpreload |
Reload the configuration |
Aliases: /forumpost can also be used as /fp or /postforum
The /forumpost command name is fully customizable in config.yml. You can rename it to fit your server's theme or terminology:
command:
name: "report" # Changes /forumpost to /report
aliases: ["r", "submit"] # Custom aliases
Examples:
name: "report" → Players use /report bug My issue herename: "ticket" → Players use /ticket suggestion Add more parkourname: "feedback" → Players use /feedback bug The shop is brokenAfter changing the command name, run /fpreload or restart your server for changes to take effect. The new command will have full tab completion for categories and statuses.
| Permission | Default | Description |
|---|---|---|
forumposter.use |
Everyone | Submit reports with /forumpost |
forumposter.seeall |
OP | View all reports, not just your own |
forumposter.setstatus |
OP | Change report statuses |
forumposter.delete |
OP | Delete reports |
forumposter.teleport |
OP | Teleport to report locations |
forumposter.reload |
OP | Reload the configuration |
When a player submits a report:
Discord Thread Format:
Thread Title: [PENDING] PlayerName - Report message preview...
Thread Content:
**Post ID**: 1-abc1234-xyz5678
**Author**: PlayerName
**Category**: Bug Report
**Location**: world: 100, 64, -200
**Created**: <t:1234567890:R>
**Content**: Full report message here...
Player submitting a bug report:
/forumpost bug The nether portal at spawn isn't working correctly
Staff checking reports:
/posts
/postinfo 1-abc1234-xyz5678
Staff updating status:
/setstatus 1-abc1234-xyz5678 IN_PROGRESS
/setstatus 1-abc1234-xyz5678 RESOLVED
Teleporting to investigate:
/tppost 1-abc1234-xyz5678
Found a bug or have a suggestion? Open an issue on GitHub!
This project is open source. Feel free to use, modify, and distribute.