blob: 0da5c0fb2d8895619eb97242fe43c814dd062783 (
plain)
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
|
### **PlaceholderAPI**
This plugin tracks player wins, losses, kills, deaths, etc. This is all stored in a database, and can be queried by placeholder api.
The supported placeholders are:
```
%hs_stats_<stat-name>%
%hs_stats_<stat-name>_<player-name>%
%hs_rank-score_<stat-name>_<place>%
%hs_rank-name_<stat-name>_<place>%
```
The following state names are:
```
total-wins
hider-wins
seeker-wins
total-games
hider-games
seeker-games
total-kills
hider-kills
seeker-kills
total-deaths
hider-deaths
seeker-deaths
```
#### %hs_stats_\<stat-name>%
This gives the current statistic for the current player viewing it.
Example: `%hs_stats_hider-kills` // Shows your kills as hider count
#### %hs_stats_\<stat-name>_\<player-name>%
This gives the current statistic for the player selected in the placeholder
Example: `%hs_stats_total-kills_JohnDoe` // Shows JohnDoe's total kill count
#### %hs_rank-score_\<stat-name>_\<place>%
This shows the current score at the given place in the given ranking of the stat
Example: `%hs_rank-score_seeker-wins_2%` // Shows 2nd place's score in seeker wins
#### %hs_rank-name_\<stat-name>_\<place>%
This shows the current name at the given place in the given ranking of the stat
Example: `%hs_rank-name_seeker-wins_2%` // Shows 2nd place's name in seeker wins
|