Do you want to see messages deleted by users, but don't know how?
Then this addon is perfect for you.
This addon lets you to see last deleted message on selected channel using
Snipe message in NORMAL mode:
Snipe message in WEBHOOK mode:
All messages are fully configurable and you can change it's look and content using configuration files.
This addon lets you to see last deleted message on selected channel using
snipe (channel)
command.Snipe message in NORMAL mode:
Snipe message in WEBHOOK mode:
All messages are fully configurable and you can change it's look and content using configuration files.
YAML:
# Snipe message mode
# Modes: NORMAL | WEBHOOK
mode: NORMAL
# Snipe message webhook
# Only for WEBHOOK mode
webhook:
# Webhook name
name: "{author-name}"
# Webhook avatar
avatar: "{author-pfp}"
# Roles/Users whose messages wont be saved in snipe database
ignored:
# Ignored Users
users:
- simonb50
# Ignored Roles
roles:
- 🧰 | Admin
# Should snipe system ignore bot messages
bots: true
# Max snipe history limit
snipeLimit: 10
YAML:
# Snipe command
snipe:
# Command Name
name: snipe
# Command Description
description: Check last deleted message in channel
# Command usage
# THIS WONT CHANGE ANYTHING. Only for translation purposes!
usage: snipe (amount) (channel)
# Command Aliases
aliases:
- deleted
# Roles with which users can use this command
permission:
- "@everyone"
# Command options (You can only change description option)
options:
- type: Integer
name: amount
description: Amount messages to skip when sniping
required: false
- type: Channel
name: channel
description: Channel, which you want to check
required: false
YAML:
# Messages used by addon.
# Its RECOMENDED to use placeholders here.
messages:
# Snipe Message
# Its recomended to use these placeholders:
# - {author-?} - Message author variables
# - {message} - Sniped Message
snipe:
# content: {message}
embeds:
- color: "#FFFF00"
author: "{author-tag}"
authorIcon: "{author-pfp}"
description: "{message}"
footer: "{guild-name}"
footerIcon: "{guild-pfp}"
timestamp: true
disableMentions: true
# Errors Messages used by addon.
errors:
# Error Message, which will be send if user wrongly use the command.
# Its recomended to use {usage} placeholder, which will show command usage.
wrongCommandUsage:
content: ⚠️ An error occured ⚠️
embeds:
- title: Wrong command usage!
color: "#FF0000"
author: "{guild-name}"
authorIcon: "{guild-pfp}"
description: "Usage: `{usage}`"
thumbnail: "{brand-logo}"
timestamp: true
# Error Message, which will be send if user mentions invalid channel.
invalidChannel:
content: ⚠️ An error occured ⚠️
embeds:
- title: Invalid channel!
color: "#FF0000"
author: "{guild-name}"
authorIcon: "{guild-pfp}"
description: |-
Provided channel is invalid
> Check if you typed everything correctly and try again.
thumbnail: "{guild-pfp}"
timestamp: true
# Error Message, which will be send if there is nothing to snipe.
nothingToSnipe:
embeds:
- title: Nothing to snipe!
color: "#FF0000"
author: "{guild-name}"
authorIcon: "{guild-pfp}"
description: There is nothing to snipe in this channel.
thumbnail: "{guild-pfp}"
timestamp: true
# Error Message, which will be send if given snipe count is too big.
# Use {limit} placeholder to replace it with max snipe limit.
snipeLimit:
embeds:
- title: Snipe count too big!
color: "#FF0000"
author: "{guild-name}"
authorIcon: "{guild-pfp}"
description: You can't snipe more than {limit} messages.
thumbnail: "{guild-pfp}"
timestamp: true