1
# MinecraftWrapped Configuration
2
# A Spotify Wrapped-style stats plugin for Minecraft
3
4
# Only put license here if told to by support representatives.
5
license: "key-goes-here"
6
7
# Database Credentials
8
# If you have multiple servers, it's recommended that you
9
# use a separate database for each of your gamemodes. For
10
# example, Factions has 1 database, Skyblock has another,
11
# and SMP has another. As if you use the same one all
12
# the stats from all servers will be collected in 1 database
13
# and will not be separable.
14
database:
15
host: ""
16
port: 3306
17
database: ""
18
username: ""
19
password: ""
20
use-ssl: true
21
22
# Date Configuration (Use DD/MM/YYYY format)
23
# Leave empty to track from the beginning
24
tracking-start-date: "01/01/2026"
25
26
# Leave empty to track indefinitely
27
tracking-end-date: "31/12/2026"
28
29
# When can players view their wrapped?
30
# Use "anytime" to allow viewing at any time
31
# Or use DD/MM/YYYY to restrict viewing until a specific date
32
wrapped-view-allowed-after-date: "anytime"
33
34
# Auto-save Configuration
35
# How often should cached stats be synced to the database? (in minutes)
36
sync-interval-minutes: 5
37
38
# Send a message on login reminding players to view their wrapped
39
login-reminder:
40
enabled: true
41
42
# Stat Tracking Toggles
43
# Enable or disable specific stat types
44
tracking:
45
mob-kills: true
46
blocks-mined: true
47
blocks-placed: true
48
chat-messages: true
49
private-messages: true
50
totem-uses: true
51
mobs-breeded: true
52
times-crouched: true
53
times-swam: true
54
meters-ran: true
55
meters-swam: true
56
items-picked-up: true
57
items-dropped: true
58
items-crafted: true
59
mobs-tamed: true
60
damage-dealt: true
61
damage-taken: true
62
players-killed: true
63
deaths: true
64
65
# Commands to listen to for private message tracking
66
message-commands:
67
- "message"
68
- "msg"
69
- "tell"
70
- "whisper"
71
- "m"
72
73
# Commands to listen to for reply tracking
74
reply-commands:
75
- "reply"
76
- "r"