-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStats
More file actions
24 lines (19 loc) · 748 Bytes
/
Stats
File metadata and controls
24 lines (19 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
command /stats:
trigger:
message "&8------------- &c&lStats &8----------------------"
message "&r"
message "&aYou have killed &e&l%{kills::%player's uuid%}% &aPlayers in total."
message "&aYou have died &e&l%{deaths::%player's uuid%}% &aIn total."
message "&aYou have placed &e&l%{place::%player's uuid%}% &aBlocks in total."
message "&aYou have broke &e&l%{break::%player's uuid%}% &aBlocks in total."
message "&r"
message "&8&m-----------------------------------"
on death:
if victim is a player:
add 1 to {deaths::%victim's uuid%}
on block place:
add 1 to {place::%player's uuid%}
on block break:
add 1 to {break::%player's uuid%}
on death:
add 1 to {deaths::%attacker's uuid%}