forked from Staartvin/Autorank-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.yml
103 lines (86 loc) · 4.96 KB
/
Settings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#############################################################################
# #
# Autorank Settings #
# #
# This config is used to configure Autorank. The other configs provide #
# a way to configure the rank system. This config is for configuring the #
# the options Autorank has to offer you #
# #
#############################################################################
afk integration: true
# If a compatible AFK plugin is found Autorank will not count online time for AFK players
# This option is always on when using the SimpleConfig
# Currently supports: Essentials, RoyalCommands and UltimateCore
# Autorank automatically chooses what plugin to use for AFK integration.
interval check: 5
# This is the interval between checks of Autorank (in minutes).
# Lowering this number will increase accuracy but will also increase server lag.
use time of: Autorank
# You can specify what time plugin Autorank will use to calculate the time that a player has played.
# This only changes the local time.
# A list to choose from:
# 1. Autorank
# 2. Stats
# 3. OnTime
# 4. Statz
# If no valid time plugin was found, it defaults to Autorank
leaderboard layout: '&6&r | &b&p - &7&d %day%, &h %hour% and &m %minute%.'
leaderboard length: 5
# changes the appearance of the /ar leaderboard command
# &r : Ranking in the leaderboard
# &p : Player name
# &m : Minutes (with full days and full hours not counted)
# &h : Hours (with full days not counted)
# &d : Days
# &tm : Total amount of minutes
# &th : Total amount of hours
check command layout: "&p has played for &time and is on path ''&path''. Requirements to be ranked up: &reqs"
# Changes the layout of the /ar check command.
# &p : Player name
# &time : time in hours, minutes and seconds
# &path : Path the player has chosen.
# &reqs : a list of all requirements
sql:
enabled: false
hostname: localhost:3306
username: root
password: ''
database: minecraft
table: autorank
# All these options are for configuring your MySQL database with Autorank.
# Hostname has to include a port, but doesn't have to be port 3306.
auto-updater:
check-for-new-versions: true
# When check-for-new-versions is true, Autorank will tell you when a new version is available.
advanced dependency output: false
# If this is true, Autorank will tell you in the console what dependencies were found and which ones weren't found.
# Turn this off to remove the console spam from Autorank about dependencies.
# This feature can be useful when Autorank can't find your dependency, but you have it installed.
show help command based on permission: false
# If this is true, the /ar help command will only show the available commands for a certain player.
# If a player doesn't have the permission to perform the command, it will not show that command on the help page.
use debug: false
# Only set this to true when you want to debug Autorank
# When this is true, Autorank will spit out debug messages
show warnings: true
# Whether Autorank has to show critical warnings.
# Leave this set to true. You can only change it to false when Autorank is giving you false warnings.
use primary group for vault: true
# Most permission plugins will only work properly with Autorank if you let it only get the primary group.
# Some need to get all the groups however. You probably only need to change this when a dev tells you to.
broadcast resetting of data files: true
# Autorank keeps track of amount of time played per day, week and month.
# When a new day, week or month starts, Autorank will reset the times of all players (except the total time, this is always preserved).
# If this value is set to true, Autorank will broadcast to all players when their storage gets reset.
use global time in leaderboard: false
# By default, Autorank will use the local time of a player when for the leaderboard. When this is set to true,
# /ar leaderboard will be sorted on the global time of a player (provided that it exists).
disable automatic path checking: false
# By default, Autorank will check whether a player meets all requirements for its path every x minutes.
# If you want to disable this feature and let players manually check whether they completed all requirements, set this to true.
automatically archive old data: true
# This is turned on by default. When this is set to true, Autorank will archive storage of players that haven't seen been online for some time.
primary storage provider: flatfile
# Set the primary storage provider for Autorank. By default, this is the flatfile provider that stores data in the
# /storage folder. The primary storage provider is used to get the time a player has played when for example
# /ar times is requested. You can choose from 'flatfile' or 'mysql'.