Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```