Difference between revisions of "SuperLobbyDeluxe:config.yml"

From PedroJM96 Wiki EN
Jump to: navigation, search
(Created page with "dd")
 
Line 1: Line 1:
dd
+
<syntaxhighlight lang="YAML">
 +
####################################################################################################
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |    _____                      _          _    _          _____      _                  | #
 +
# |  / ____|                    | |        | |  | |        |  __ \    | |                  | #
 +
# |  | (___  _  _ _ __  ___ _ __| |    ___ | |__ | |__  _  _| |  | | ___| |_  ___  _____    | #
 +
# |  \___ \| | | | '_ \ / _ \ '__| |    / _ \| '_ \| '_ \| | | | |  | |/ _ \ | | | \ \/ / _ \  | #
 +
# |  ____) | |_| | |_) |  __/ |  | |___| (_) | |_) | |_) | |_| | |__| |  __/ | |_| |>  <  __/  | #
 +
# |  |_____/ \__,_| .__/ \___|_|  |______\___/|_.__/|_.__/ \__, |_____/ \___|_|\__,_/_/\_\___|  | #
 +
# |              | |                                      __/ |                                | #
 +
# |              |_|                                      |___/                                | #
 +
# |                                                                                              | #
 +
# |                                                                                              | #
 +
# |  WIKI:        http://en.wiki.pedrojm96.com/wiki/SuperLobbyDeluxe                            | #
 +
# |  BUG REPORTS: https://www.spigotmc.org/threads/superlobbydeluxe.132949                      | #
 +
# |  AUTHOR: PedroJM96 (pedrojm96.com)                                                          | #
 +
# |  OFFICIAL SERVER: mc.minepal.net                                                            | #
 +
# |                                                                                              | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
####################################################################################################
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# | For a detailed explanation of the configuration see this page.                              | #
 +
# | http://en.wiki.pedrojm96.com/wiki/SuperLobbyDeluxe:config.yml                                | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                            General                                          | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#Check for updates.
 +
Update-Check: true
 +
 
 +
#The prefix that the plugin will show in the messages.
 +
Prefix: '&6SuperLobby &e>> &7'
 +
 
 +
#The language of the plugin messages.
 +
Messages: EN
 +
 
 +
#The worlds where the plugin will be active.
 +
Worlds:
 +
- world
 +
- lobby
 +
- hub
 +
 
 +
#To deactivate the rain.
 +
DisableRain: true
 +
 
 +
#To deactivate the blocks break.
 +
DisableBlockBreak: true
 +
 
 +
#To deactivate that they place blocks.
 +
DisableBlockPlace: true
 +
 
 +
#To deactivate that the blocks burn.
 +
DisableBlockBurn: true
 +
 
 +
#To deactivate if the player can throw item.
 +
DisableDropItem: true
 +
 
 +
#To deactivate if the player can move item in the inventory.
 +
DisableItemMove: true
 +
 
 +
#To deactivate that the items do damage.
 +
DisableItemDamage: true
 +
 
 +
#To deactivate if the player can collect item.
 +
DisablePickUpItems: true
 +
 
 +
#To deactivate entity explosions.
 +
DisableEntityExplode: true
 +
 
 +
#To deactivate the damage.
 +
DisableDamage: false
 +
 
 +
#To deactivate hunger in the players.
 +
DisableHunger: true
 +
 
 +
#To deactivate the players' death messages.
 +
DisableDeathMessage: true
 +
 
 +
#To deactivate monsters and animals appear.
 +
DisableCreatureSpawn: true
 +
 
 +
#To clean the items left by the player when he dies.
 +
ClearDropsOnDeath: true
 +
 
 +
#To clean the inventory to enter the server.
 +
JoinClearInventory: true
 +
 
 +
#To clean the chat when entering the server.
 +
JoinClearChat: true
 +
 
 +
#To teleport the player to the spawn when entering the server.
 +
JoinSpawn: true
 +
 
 +
#To give and activate the custom items when entering the server.
 +
LobbyItems: true
 +
 
 +
#To prevent players from falling into the void.
 +
VoidTP: true
 +
 
 +
#Location in Y of the void level.
 +
VoidLevel: 0
 +
 
 +
#So that the world is always day.
 +
AlwaysDay: true
 +
 
 +
#To activate custom information commands.
 +
InfoCommands: true
 +
 
 +
#To activate custom events.
 +
CustomEvents: true
 +
 
 +
#To protect the frames.
 +
FrameProtect: true
 +
 
 +
#To protect the farm.
 +
FarmProtect: true
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                            BossBar                                          | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To send messages when you enter using the BossBar.
 +
#Colors: BLUE, GREEN, PINK, PURPLE, RED, WHITE, YELLOW
 +
#Styles: NOTCHED_10, NOTCHED_12, NOTCHED_20, NOTCHED_6, PROGRESS
 +
JoinBossBar:
 +
  Enable: true
 +
  Message: '&3Welcome to my server!'
 +
  Color: BLUE
 +
  Style: NOTCHED_20
 +
  Time: 50
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                              Tab                                            | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To send the tab when joining the server.
 +
JoinTab:
 +
  Enable: true
 +
  Header: |-
 +
    &7
 +
    &a&m--&2&m--&8&m[-&r &a&lYourserver &f&lNetwork &8&m-]&2&m--&a&m--
 +
    &7
 +
  Footer: |-
 +
    &7
 +
    &7Website &7yourserver.com
 +
    &7Twitter: &7@yourserver
 +
    &7Store: &7store.yourserver.com
 +
    &7
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                            Titles                                          | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To send titles when joining the server.
 +
JoinTitles:
 +
  Enable: true
 +
  FadeIn: 20
 +
  Stay: 50
 +
  FadeOut: 10
 +
  Title: '&6<player> &bWelcome to'
 +
  Subtitle: '&6&lYourserver'
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                              MOTD                                            | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To send the MOTD when joining the server.
 +
JoinMotd:
 +
  Enable: true
 +
  Message:
 +
  - '&a&m---------------------------------------------------'
 +
  - ' '
 +
  - '&a# &6&l<player> &7Welcome to &b&lYourserver &fNetwork!'
 +
  - ' '
 +
  - '&a# &7Buy rank on: &2yourpage.com/shop'
 +
  - '&a# &7Facebook: &2facebook.com/Yourserver'
 +
  - '&a# &7For more information type &2/info'
 +
  - ''
 +
  - '&a&m---------------------------------------------------'
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                            GameMode                                          | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To change the game mode when entering.
 +
#Game modes: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
 +
JoinGameMode:
 +
  Enable: true
 +
  GameMode: survival
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                      Commands Blacklist                                    | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To deactivate commands.
 +
CommandsBlacklist:
 +
  Enable: true
 +
  Bypass: superlobby.admin
 +
  List:
 +
  - p
 +
  - pl
 +
  - '?'
 +
  - help
 +
  - plugins
 +
  - bukkit:plugins
 +
  - bukkit:pl
 +
  - bukkit:?
 +
  - bukkit:help
 +
  - ver
 +
  - version
 +
  - gc
 +
  - bukkit:version
 +
  - bukkit:ver
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                            ActionBar                                        | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To send the ActionBar when joining the server.
 +
#Types: Animation, Random
 +
JoinActionBar:
 +
  Enable: true
 +
  Type: Animation
 +
  Messages:
 +
  - 0,&6W_
 +
  - 0,&6We_
 +
  - 0,&6Wel_
 +
  - 0,&6Welc_
 +
  - 0,&6Welco_
 +
  - 0,&6Welcom_
 +
  - 0,&6Welcome_
 +
  - 0,&6Welcome _
 +
  - 0,&6Welcome t_
 +
  - 0,&6Welcome to_
 +
  - 0,&6Welcome to _
 +
  - 0,&6Welcome to m_
 +
  - 0,&6Welcome to my_
 +
  - 0,&6Welcome to my _
 +
  - 0,&6Welcome to my s_
 +
  - 0,&6Welcome to my se_
 +
  - 0,&6Welcome to my ser_
 +
  - 0,&6Welcome to my serv_
 +
  - 0,&6Welcome to my serve_
 +
  - 0,&6Welcome to my server_
 +
  - 0,&6Welcome to my server!_
 +
 
 +
# +----------------------------------------------------------------------------------------------+ #
 +
# |                                          ChatFormat                                        | #
 +
# +----------------------------------------------------------------------------------------------+ #
 +
 
 +
#To format the chat
 +
#Chat Variables: {PLAYER_NAME}, {DISPLAY_NAME}, {WORLD}, {PREFIX}, {SUFFIX}, {MESSAGE}
 +
ChatFormat:
 +
  Enable: true
 +
  format:
 +
    default: '{PREFIX} &r{PLAYER_NAME} &e&l> &7{MESSAGE}'
 +
    vip: '{PREFIX} &r{PLAYER_NAME} &e&l> &5{MESSAGE}'
 +
    admin: '{PREFIX} &r{PLAYER_NAME}% &e&l> &c{MESSAGE}'
 +
 
 +
</syntaxhighlight>

Revision as of 03:30, 19 February 2018

####################################################################################################
# +----------------------------------------------------------------------------------------------+ #
# |    _____                       _           _     _           _____       _                   | #
# |   / ____|                     | |         | |   | |         |  __ \     | |                  | #
# |  | (___  _   _ _ __   ___ _ __| |     ___ | |__ | |__  _   _| |  | | ___| |_   ___  _____    | #
# |   \___ \| | | | '_ \ / _ \ '__| |    / _ \| '_ \| '_ \| | | | |  | |/ _ \ | | | \ \/ / _ \   | #
# |   ____) | |_| | |_) |  __/ |  | |___| (_) | |_) | |_) | |_| | |__| |  __/ | |_| |>  <  __/   | #
# |  |_____/ \__,_| .__/ \___|_|  |______\___/|_.__/|_.__/ \__, |_____/ \___|_|\__,_/_/\_\___|   | #
# |               | |                                       __/ |                                | #
# |               |_|                                      |___/                                 | #
# |                                                                                              | #
# |                                                                                              | #
# |  WIKI:        http://en.wiki.pedrojm96.com/wiki/SuperLobbyDeluxe                             | #
# |  BUG REPORTS: https://www.spigotmc.org/threads/superlobbydeluxe.132949                       | #
# |  AUTHOR: PedroJM96 (pedrojm96.com)                                                           | #
# |  OFFICIAL SERVER: mc.minepal.net                                                             | #
# |                                                                                              | #
# +----------------------------------------------------------------------------------------------+ #
####################################################################################################

# +----------------------------------------------------------------------------------------------+ #
# | For a detailed explanation of the configuration see this page.                               | #
# | http://en.wiki.pedrojm96.com/wiki/SuperLobbyDeluxe:config.yml                                | #
# +----------------------------------------------------------------------------------------------+ #

# +----------------------------------------------------------------------------------------------+ #
# |                                            General                                           | #
# +----------------------------------------------------------------------------------------------+ #

#Check for updates.
Update-Check: true

#The prefix that the plugin will show in the messages.
Prefix: '&6SuperLobby &e>> &7'

#The language of the plugin messages.
Messages: EN

#The worlds where the plugin will be active.
Worlds:
- world
- lobby
- hub

#To deactivate the rain.
DisableRain: true

#To deactivate the blocks break.
DisableBlockBreak: true

#To deactivate that they place blocks.
DisableBlockPlace: true

#To deactivate that the blocks burn.
DisableBlockBurn: true

#To deactivate if the player can throw item.
DisableDropItem: true

#To deactivate if the player can move item in the inventory.
DisableItemMove: true

#To deactivate that the items do damage.
DisableItemDamage: true

#To deactivate if the player can collect item.
DisablePickUpItems: true

#To deactivate entity explosions.
DisableEntityExplode: true

#To deactivate the damage.
DisableDamage: false

#To deactivate hunger in the players.
DisableHunger: true

#To deactivate the players' death messages.
DisableDeathMessage: true

#To deactivate monsters and animals appear.
DisableCreatureSpawn: true

#To clean the items left by the player when he dies.
ClearDropsOnDeath: true

#To clean the inventory to enter the server.
JoinClearInventory: true

#To clean the chat when entering the server.
JoinClearChat: true

#To teleport the player to the spawn when entering the server.
JoinSpawn: true

#To give and activate the custom items when entering the server.
LobbyItems: true

#To prevent players from falling into the void.
VoidTP: true

#Location in Y of the void level.
VoidLevel: 0

#So that the world is always day.
AlwaysDay: true

#To activate custom information commands.
InfoCommands: true

#To activate custom events.
CustomEvents: true

#To protect the frames.
FrameProtect: true

#To protect the farm.
FarmProtect: true

# +----------------------------------------------------------------------------------------------+ #
# |                                            BossBar                                           | #
# +----------------------------------------------------------------------------------------------+ #

#To send messages when you enter using the BossBar.
#Colors: BLUE, GREEN, PINK, PURPLE, RED, WHITE, YELLOW
#Styles: NOTCHED_10, NOTCHED_12, NOTCHED_20, NOTCHED_6, PROGRESS
JoinBossBar:
  Enable: true
  Message: '&3Welcome to my server!'
  Color: BLUE
  Style: NOTCHED_20
  Time: 50
  
# +----------------------------------------------------------------------------------------------+ #
# |                                              Tab                                             | #
# +----------------------------------------------------------------------------------------------+ #

#To send the tab when joining the server.
JoinTab:
  Enable: true
  Header: |-
    &7
    &a&m--&2&m--&8&m[-&r &a&lYourserver &f&lNetwork &8&m-]&2&m--&a&m--
    &7
  Footer: |-
    &7
    &7Website &7yourserver.com
    &7Twitter: &7@yourserver
    &7Store: &7store.yourserver.com
    &7

# +----------------------------------------------------------------------------------------------+ #
# |                                             Titles                                           | #
# +----------------------------------------------------------------------------------------------+ #

#To send titles when joining the server.
JoinTitles:
  Enable: true
  FadeIn: 20
  Stay: 50
  FadeOut: 10
  Title: '&6<player> &bWelcome to'
  Subtitle: '&6&lYourserver'

# +----------------------------------------------------------------------------------------------+ #
# |                                              MOTD                                            | #
# +----------------------------------------------------------------------------------------------+ #

#To send the MOTD when joining the server.
JoinMotd:
  Enable: true
  Message:
  - '&a&m---------------------------------------------------'
  - ' '
  - '&a# &6&l<player> &7Welcome to &b&lYourserver &fNetwork!'
  - ' '
  - '&a# &7Buy rank on: &2yourpage.com/shop'
  - '&a# &7Facebook: &2facebook.com/Yourserver'
  - '&a# &7For more information type &2/info'
  - ''
  - '&a&m---------------------------------------------------'

# +----------------------------------------------------------------------------------------------+ #
# |                                            GameMode                                          | #
# +----------------------------------------------------------------------------------------------+ #

#To change the game mode when entering.
#Game modes: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
JoinGameMode:
  Enable: true
  GameMode: survival

# +----------------------------------------------------------------------------------------------+ #
# |                                       Commands Blacklist                                     | #
# +----------------------------------------------------------------------------------------------+ #

#To deactivate commands.
CommandsBlacklist:
  Enable: true
  Bypass: superlobby.admin
  List:
  - p
  - pl
  - '?'
  - help
  - plugins
  - bukkit:plugins
  - bukkit:pl
  - bukkit:?
  - bukkit:help
  - ver
  - version
  - gc
  - bukkit:version
  - bukkit:ver
  
# +----------------------------------------------------------------------------------------------+ #
# |                                            ActionBar                                         | #
# +----------------------------------------------------------------------------------------------+ #

#To send the ActionBar when joining the server.
#Types: Animation, Random
JoinActionBar:
  Enable: true
  Type: Animation
  Messages:
  - 0,&6W_
  - 0,&6We_
  - 0,&6Wel_
  - 0,&6Welc_
  - 0,&6Welco_
  - 0,&6Welcom_
  - 0,&6Welcome_
  - 0,&6Welcome _
  - 0,&6Welcome t_
  - 0,&6Welcome to_
  - 0,&6Welcome to _
  - 0,&6Welcome to m_
  - 0,&6Welcome to my_
  - 0,&6Welcome to my _
  - 0,&6Welcome to my s_
  - 0,&6Welcome to my se_
  - 0,&6Welcome to my ser_
  - 0,&6Welcome to my serv_
  - 0,&6Welcome to my serve_
  - 0,&6Welcome to my server_
  - 0,&6Welcome to my server!_
  
# +----------------------------------------------------------------------------------------------+ #
# |                                           ChatFormat                                         | #
# +----------------------------------------------------------------------------------------------+ #

#To format the chat
#Chat Variables: {PLAYER_NAME}, {DISPLAY_NAME}, {WORLD}, {PREFIX}, {SUFFIX}, {MESSAGE}
ChatFormat:
  Enable: true
  format:
    default: '{PREFIX} &r{PLAYER_NAME} &e&l> &7{MESSAGE}'
    vip: '{PREFIX} &r{PLAYER_NAME} &e&l> &5{MESSAGE}'
    admin: '{PREFIX} &r{PLAYER_NAME}% &e&l> &c{MESSAGE}'