-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigExample.json
More file actions
46 lines (46 loc) · 1.28 KB
/
configExample.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"rankups": [{
"rankupName": "Citizen",
"requirements": [{
"type": "rankRequirement",
"value": "wanderer"
}, {
"type": "greaterThenStatistic",
"field": "playTime",
"value": 108000
}, {
"type": "greaterThenStatistic",
"field": ["blocksPlaced", "blocksDestroyed"],
"value": 19080
}, {
"type": "greaterThenStatistic",
"field": "money",
"value": 10
}],
"actions": [{
"type": "command",
"value": "jperms user %uuid% group set citizen"
}, {
"type": "broadcast",
"value": "&6%username% &bHas ranked up to Citizen"
}]
}, {
"rankupName": "GoldenCitizen",
"requirements": [{
"type": "rankRequirement",
"value": "citizen"
}, {
"type": "greaterThenStatistic",
"field": "playTime",
"value": 360000
}],
"actions": [{
"type": "command",
"value": "jperms user %uuid% group set trusted"
}, {
"type": "broadcast",
"value": "&6%username% &bHas ranked up to Trusted"
}]
}],
"checkFrequency": 120
}