Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dverkask/grandquotes
A Minecraft plugin for create quotes on map
https://github.com/dverkask/grandquotes
bukkit minecraft-plugin paper spigot spigot-plugin
Last synced: 8 days ago
JSON representation
A Minecraft plugin for create quotes on map
- Host: GitHub
- URL: https://github.com/dverkask/grandquotes
- Owner: DverkaSK
- Created: 2024-02-02T21:28:27.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-04-19T19:27:58.000Z (7 months ago)
- Last Synced: 2024-04-19T20:32:28.090Z (7 months ago)
- Topics: bukkit, minecraft-plugin, paper, spigot, spigot-plugin
- Language: Java
- Homepage:
- Size: 434 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![png](quote.png)
Minecraft plugin that allows you to create quotes from players when you click on text in chat.## Usage
To receive a quote, click on the player’s message in the chat, or enter the command manually:
```java
/quote
```## Storage
The plugin has the ability to save quotes in SQLite and Redis, which are configured via config.yml
## Configuration
```yaml
default:
color:
# HEX default text color value
textcolor: "#ffffff"
# HEX default background color value
background: "#000000"
# HEX default stroke color value
strokecolor: "#ffffff"
font:
# Default font name
# Font must exist in the system
fontname: "Times New Roman"
# Default font style
# 0 - Plain
# 1 - Bold
# 2 - Italic
textstyle: 0
# Default font size
fontsize: 12
quote:
# Default quote text
# Will be applied if the command is entered without a message
# For example '/quote '
text: "Default text"
# Default title name
title: "GrandQuotes"
# Default attribution
attribution: "Attribution"
database:
# Quotes will be saved in SQLite if enable = true
sqlite:
enable: true
# Name of database file
# The database file will be saved in the plugin folder
path: "test"
redis:
# Quotes will be saved in Redis if enable = true
enable: true
username: "user"
password: "password"
host: "localhost"
port: 6379
```