Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.85 KB | None | 0 0
  1. #some placeholders
  2. # %online%       = online count
  3. # %ping%         = ping of player
  4. # %nick%         = nickname of player
  5. # %ip%           = IP of player
  6. # %time%         = for example 20:30:00
  7. # %rank%         = permission group of player
  8. # %money%        = money of player
  9. # %world%        = name of world where player is
  10. # %worldonline%  = amount of players in the same world, might be useful with per-world-playerlist enabled
  11. # %canseeonline% = similar to online, but doesn't count vanished players
  12. # %staffonline%  = amount of staff online, groups can be defined below
  13. # %kingdom%      = if kingdom plugin is installed..
  14. # %faction%      = if a faction plugin is installed..
  15. # .. + PlaceholderAPI
  16.  
  17. change-nametag-prefix-suffix: true #Warning! Disabling will break sorting of players in tablist!
  18. change-tablist-prefix-suffix: true
  19. enable-header-footer: true
  20.  
  21. #1 tick = 50 milliseconds
  22. nametag-refresh-interval-ticks: 200
  23. tablist-refresh-interval-ticks: 200
  24. header-footer-refresh-interval-ticks: 1
  25.  
  26. header:
  27.  - '&a&lForestopia'
  28.   - '&7En ligne: &a%canseeonline%'
  29.   - '&7----------------------'
  30. # - "%animated-object:versions%" #requires ViaVersion
  31. footer:
  32.  - '&7----------------------'
  33.   - "&7%time%"
  34.   - '&7Gemmes: &a%vault_eco_balance_fixed%◊'
  35.   - "&7Monde: &a%multiverse_world_alias%"
  36.  
  37. show-ping-in-tab: false
  38. invalid-ping-replacement: -1
  39. use-essentials-nickname-in-tab: false
  40.  
  41. #different playerlist in differnt world. Like on a bungeecord
  42. per-world-playerlist: false
  43.  
  44. #renamed, so hopefully nobody will ask what is this anymore..
  45. if-a-player-is-assigned-to-more-than-1-group-the-group-higher-in-this-list-will-be-used-to-apply-prefix-suffix:
  46.  - "Owner"
  47.   - "Admin"
  48.   - "Mod"
  49.   - "Player"
  50.  
  51. #used for %staffonline% variable
  52. staff-groups:
  53.  - "Admin"
  54.   - "Mod"
  55.   - "Owner"
  56.  
  57. #better showing of %rank% value
  58. rank-aliases:
  59.   Admin: "&4&lAdmin"
  60.   Mod: "&b&lMod"
  61.   Premium: "&6&lPremium"
  62.   default: "&7No Rank"
  63.   player: "&7No Rank"
  64.  
  65. #tabprefix = prefix in tablist with no known limit of characters
  66. #tagprefix = prefix above player's character with limit of 16 characters
  67. #tabsuffix = suffix in tablist with no known limit of characters
  68. #tagsuffix = suffix above player's character with limit of 16 characters
  69. #you don't need to use all 4, you can delete the empty values to not have this config full of "spam"
  70.  
  71. #players are sorted in tablist alphabetically by their tabprefix
  72. #for a guide how to "bypass" this, check FAQ on plugin's spigot page
  73. Groups:
  74.   Souverain:
  75.     tabprefix: "&1&2✦ "
  76.   Garde:
  77.     tabprefix: "&2&a✦ "
  78.   Mercenaire:
  79.     tabprefix: "&3&e"
  80.     tagprefix: ""
  81.   Aventurier:
  82.     tabprefix: "&4&6"
  83.     tagprefix: ""
  84.   Explorateur:
  85.     tabprefix: "&5&b"
  86.     tagprefix: ""
  87.   Voyageur:
  88.     tabprefix: "&6&9"
  89.     tagprefix: ""
  90.   Étranger:
  91.     tabprefix: "&7&7"
  92.     tagprefix: ""
  93.  
  94. #personal settings, override group settings
  95. Users:
  96.   Player1:
  97.     tabprefix: ""
  98.     tagprefix: ""
  99.     tabsuffix: ""
  100.     tagsuffix: ""
  101.    
  102. #list of worlds with different settings than default, other worlds will use settings from above
  103. per-world-settings:
  104.   world1:
  105.     header:
  106.      - "an example of world with custom"
  107.     footer:
  108.      - "header/footer and prefix/suffix"
  109.     Groups:
  110.       Admin:
  111.         tabprefix: "&2&lAdmin &1&l"
  112.         tagprefix: "&2&lAdmin &1&l"
  113.       Player:
  114.         tabprefix: "&5&lPlayer &3&l"
  115.         tagprefix: "&5&lPlayer &3&l"
  116.   world2:
  117.     Groups:
  118.       Admin:
  119.         tabprefix: "&2&lAdmin &1&l"
  120.         tagprefix: "&2&lAdmin &1&l"
  121.       Player:
  122.         tabprefix: "&5&lPlayer &3&l"
  123.         tagprefix: "&5&lPlayer &3&l"
  124.     Users:
  125.       Player1:
  126.         tabprefix: ""
  127.         tagprefix: ""
  128.         tabsuffix: ""
  129.         tagsuffix: ""
  130.   world3:
  131.     header:
  132.      - "an example of custom header/footer"
  133.       - "in world3, but"
  134.     footer:
  135.      - "prefix and suffix still same"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement