Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 13
Configuration
# Don't touch this! It might wipe your entire config!!config-version: 2# A list of material names (should be in the Bukkit/Spigot Material enum form)# These materials define the blocks which can be used with ServerSigns# Refer to this page for the list: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.htmlblocks:
- SIGN_POST
- WALL_SIGN# Whether or not any block can be used with ServerSigns (overrides 'blocks' list)any_block: true# The language key which should be used to find the languages file# For example, 'en' will resolve to the 'ServerSigns/translations/en.yml' filelanguage: 'en'# The prefix used in most ServerSigns messagesmessage_prefix: '&2[ServerSigns]'# The colour for most ServerSigns messagesmessage_colour: '&e'# Whether or not Vault should be used for permissions grantingvault_grant: true# The command to execute from console for setting permissions without Vaultpermission_add_command: 'pex user <player> add <permission>'# The command to execute from console for removing permissions without Vaultpermission_remove_command: 'pex user <player> remove <permission>'# Whether or not admins must be sneaking to destroy ServerSignssneak_to_destroy: true# Whether or not to display a message to players when funds are removed from accountshow_funds_removed_message: true# The currency string or symbol for use in messagescurrency_string: 'dollars'# Whether or not the plugin should announce ServerSigns developers joining your serverbroadcast_developers: true# Whether or not the plugin should automatically check for the latest version and download itcheck_for_updates: true# Whether command logging to the console should be disableddisable_command_logging: false# Whether the plugin should listen for left clicks as well as right clicks for ServerSign activation# This option must be enabled to allow ServerSigns to execute different commands for left & right clicksallow_left_clicking: false# Whether funds remove via /svs setprice should be sent to a server banksend_payments_to_bank: false# The server bank name (used if send_payments_to_bank is set to true)deposit_bank_name: 'server'# Whether the Player#chat() function should be used instead of Player#performCommand() for commands# If enabled, this means commands executed through ServerSigns will fire the command pre-process eventalternate_command_dispatching: false# Whether or not you want to opt-out of Metrics statistic gathering through www.mcstats.orgmetrics_opt_out: false# A list of commands which cannot be attached to ServerSigns (to prevent console-only command exploits)blocked_commands:
- 'op'
- 'deop'
- 'stop'# Defines the task delay threshold (in seconds) above which tasks will be persisted to disktask_persist_threshold: 10blocks: # Default:
- SIGN_POST
- WALL_SIGN# Redstone activators:
- STONE_BUTTON
- WOOD_BUTTON
- LEVER# Pressure plates
- GOLD_PLATE
- IRON_PLATE
- STONE_PLATE
- WOODEN_PLATE# Doors and Gates
- ACACIA_DOOR
- BIRCH_DOOR
- DARK_OAK_DOOR
- JUNGLE_DOOR
- SPRUCE_DOOR
- TRAP_DOOR
- WOODEN_DOOR
- ACACIA_FENCE_GATE
- BIRCH_FENCE_GATE
- FENCE_GATE
- DARK_OAK_FENCE_GATE
- JUNGLE_FENCE_GATE
- SPRUCE_FENCE_GATE# Chests
- TRAPPED_CHEST
- ENDER_CHEST
- CHEST# Miscellaneous
- BREWING_STAND
- ENCHANTMENT_TABLE
- CAULDRON
- ANVILWhen the config file is generated for the first time (or when remove it), it will generate the correct blocks for your current minecraft version.
1.9 -> 1.12
blocks:
- SIGN_POST
- WALL_SIGN1.13
blocks:
- SIGN
- WALL_SIGN1.14+
blocks:
- ACACIA_SIGN
- ACACIA_WALL_SIGN
- BIRCH_SIGN
- BIRCH_WALL_SIGN
- DARK_OAK_SIGN
- DARK_OAK_WALL_SIGN
- JUNGLE_SIGN
- JUNGLE_WALL_SIGN
- OAK_SIGN
- OAK_WALL_SIGN
- SPRUCE_SIGN
- SPRUCE_WALL_SIGNThe translations folder (located at plugins/ServerSigns/translations) contains all the language files used in the translations system for ServerSigns messages. ServerSigns will load the language file that corresponds with the language value defined in the config.yml.
The plugin will generate (and overwrite) the supported default translation files ending in _default.yml on each server restart. Any unsupported languages with an _default.yml file present will be discarded. You should never alter the default files.
It is very easy to create a custom translation file for ServerSigns to use - all you need to do is create a copy of en_default.yml (or any other default file) and rename the file to .yml (for example, en.yml de.yml fr.yml etc). Now simply edit the newly copied file and change any messages you wish; colour codes are fully supported, and leaving a message blank will cause it to be skipped when sending messages to clients.
The following translations have been created by the community:
- https://pastebin.com/iyvLvume - Slovak
Although ServerSigns does not explicitly require any other plugins to use, it is highly recommended to install Vault and one of the supported Permission/Economy plugins shown. By having Vault on your server it enables ServerSigns to become even more powerful & allows you to manipulate player permissions, groups & economy balances with a variety of tools and functions.