Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/efekos/signs
Lets you sign any item
https://github.com/efekos/signs
java minecraft minecraft-plugin minecraft-plugins minecraft-server minecraft-server-plugin spigot spigot-plugin spigot-plugins spigot-resource spigot-resources
Last synced: about 1 month ago
JSON representation
Lets you sign any item
- Host: GitHub
- URL: https://github.com/efekos/signs
- Owner: efekos
- License: mit
- Created: 2023-07-08T21:46:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-08T22:08:19.000Z (over 1 year ago)
- Last Synced: 2024-11-10T23:05:51.051Z (3 months ago)
- Topics: java, minecraft, minecraft-plugin, minecraft-plugins, minecraft-server, minecraft-server-plugin, spigot, spigot-plugin, spigot-plugins, spigot-resource, spigot-resources
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Signs
You can simply sign any item you want in the game!## Installation
1. Install the jar.
2. Put it to the folder called 'plugins' in your server.
3. Start the server
4. Have fun paying all your fortune for a stick signed by Dream!## Configuration
**config.yml** has these two options:| Name | Description | Type |
|------------------|--------------------------------------------|------------------------------------------------------------------------------------|
| `blocked-items` | Items that players will be unable to sign. | [Material](https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html) list |
| `enchanted-sign` | Makes signed items glow like enchanted. | [Boolean](https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html) |**lang.yml**
````yaml
signed-by: '&7Signed by &b%player%' # Seen at the bottom of items when they got signed by someone
signed: '&aSuccessfully signed this item!' # When someone uses /sign
no-item: '&cThere is nothing in your hand' # When someone uses /sign but there is nothing in their main hand.
not-signable: '&cItem in your hand is blocked for signing' # When someone tries to sign a blocked item.
already-signed: '&cSomeone called &b%player%&c already signed this item.' # When someone tries to sign an item that has already been signed.
````