View difference between Paste ID: s09PB7HE and yR7gRN7B
SHOW: | | - or go back to the newest paste.
1
## Config version (DO NOT EDIT)
2
config: 2
3
4
## Language file
5
lang: 'en'
6
7
## Debug mode
8
debug: false
9
10
## Log to file
11
log:
12
  enabled: true
13
  # Reset log on startup
14
  reset: false
15
16
## Update checking
17
update:
18
  check: true # RECOMMENDED YOU LEAVE THIS TRUE
19
20
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
21
# PLUGIN SPECIFIC SETTINGS
22
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
23
24
# Placeholder settings
25
placeholder:
26
  # logs the memory usage of placeholders on startup
27
  log-memory: false
28
  # Clear unused placeholders that are not enabled.
29
  clear-unused: true
30
# Tweaks to increase performance (Use at own risk)
31
tweaks:
32
  # This option does not send scoreboard remove packets
33
  # to the client on quit. This can increase performance on servers
34
  # where players quit a lot (hubs, ...)
35
  #
36
  # Removal of the plugin requires you to manually delete the scoreboard.dat in the worlds
37
  # /data folder
38
  #
39
  # Enabling this can cause the scoreboard not to work anymore. Use at your own risk
40
  keepScoreboardOnQuit: false
41
# Toggling allows you to disable the scoreboard
42
database:
43
  # If you want the toggle to stay even when your users
44
  # log off you can enable this. Keep in mind that this requires a
45
  # MySQL or SQLite database.
46
  # If you are configuring the plugin for the first time it is advised
47
  # to stay away from these settings until you managed the scoreboard
48
  # set up.
49
  persistent: false
50
  # Database configuration is SIMILAR to http://wiki.bukkit.org/Bukkit.yml#database
51
  # with isolation, url, driver, ...
52
  # Database name
53
  database: "featherboard"
54
  # Database username
55
  username: bukkit
56
  # Database isolation type
57
  isolation: SERIALIZABLE
58
  # Database driver
59
  driver: org.sqlite.JDBC
60
  # Database password
61
  password: walrus
62
  # Database driver URL
63
  # {DIR} will be replaced with the plugin directory
64
  # {NAME} will be replaced wit the plugin name
65
  url: jdbc:sqlite:{DIR}{NAME}.db
66
  # Save interval in ticks
67
  save-interval: 6000
68
69
# Disabled worlds. Add your world name in this list to
70
# disable it.
71
disabled-worlds:
72
- 'example_world'
73
74
# Show delay on join. Usefull if you wish to let the user
75
# enjoy a Title MOTD without having the scoreboard obstructing
76
# the view.
77
show-delay: 0
78
79
# Anti Flicker will use a new engine that will allow you to use fast animations
80
# without any flicker.
81
# You can disable this feature if you do not have fast refresh rates.
82
antiflicker: true
83
84
# A list of different scoreboards
85
boards:
86
  # Default FeatherBoard comes with a board called "default". All players have the permission
87
  # featherboard.group.default  (by default) meaning all players should see the scoreboard unless
88
  # the permission is negated.
89
  #
90
  # You can create as many boards as you want as long as the name is unique. It is advised to give logical
91
  # names such as "vip-board", "mcmmo-levelup", ...
92
  default:
93
    title:
94
      text:
95
      - '<single><delay times="10">&l><</delay></single>'
96
      - '<single>&f&ler</single>' # <single> will allow the frame to only run ONCE
97
      - '<single>&f&lherB</single>'
98
      - '<single>&f&lherBo</single>'
99
      - '<single>&f&latherBoa</single>'
100
      - '<single>&f&leatherBoar</single>'
101
      - ' <delay times="10">&f&lFeatherBoard&1&l3</delay>' # <delay> will repeat the line X times
102
      - '<glow glowsize="5">FeatherBoard</glow>'
103
      interval: 2
104
      random: false
105
    header:
106
      text:
107
      - '<rainbow>&m+---------------------+</rainbow>'
108
      interval: 10
109
      random: true
110
    player-label:
111
      text:
112
      - '&b&l> &e&lPlayer Info:'
113
      interval: 100
114
      random: false
115
    player-line1:
116
      text:
117
      - '&o<cmd repeatmiddle="20">{player}</cmd>'
118
      - '&o<cmd repeatmiddle="20">{locale}</cmd>'
119
      interval: 2
120
      random: false
121
  district:
122
    title:
123
      text:
124
      - '&cName'
125
      interval: 2
126
      random: false
127
    header:
128
      text:
129
      - '<rainbow>&m+---------------------+</rainbow>'
130
      interval: 10
131
      random: true
132
    district-label:
133
      text:
134-
      - '&b&l> &e&lEntered a district:'
134+
      - '&aClaim Owner:'
135
      interval: 100
136
      random: false
137
    district-label2:
138
      text:
139-
      - '&b&l> &e&lOwned by: %landowner'
139+
      - '&7%landowner'
140
      interval: 100
141
      random: false
142
    footer:
143
      text:
144
      - '<rainbow>&m+---------------------+</rainbow>'
145
      interval: 10
146
      random: true