-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
NoCheatPlusPlayerProperties.java
78 lines (63 loc) · 2.33 KB
/
NoCheatPlusPlayerProperties.java
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
package com.denizenscript.depenizen.bukkit.properties.nocheatplus;
import com.denizenscript.denizencore.objects.properties.Property;
import com.denizenscript.denizencore.objects.Mechanism;
import fr.neatmonster.nocheatplus.checks.ViolationHistory;
import com.denizenscript.denizen.objects.PlayerTag;
import com.denizenscript.denizencore.objects.core.ElementTag;
import com.denizenscript.denizencore.objects.ObjectTag;
import com.denizenscript.denizencore.tags.Attribute;
public class NoCheatPlusPlayerProperties implements Property {
@Override
public String getPropertyString() {
return null;
}
@Override
public String getPropertyId() {
return "NoCheatPlusPlayer";
}
public static boolean describes(ObjectTag object) {
return object instanceof PlayerTag;
}
public static NoCheatPlusPlayerProperties getFrom(ObjectTag object) {
if (!describes(object)) {
return null;
}
else {
return new NoCheatPlusPlayerProperties((PlayerTag) object);
}
}
public static final String[] handledTags = new String[] {
"ncp"
};
public static final String[] handledMechs = new String[] {
}; // None
private NoCheatPlusPlayerProperties(PlayerTag player) {
this.player = player;
}
PlayerTag player;
@Override
public String getAttribute(Attribute attribute) {
if (attribute == null) {
return null;
}
if (attribute.startsWith("ncp")) {
attribute = attribute.fulfill(1);
// <--[tag]
// @attribute <PlayerTag.ncp.infractions>
// @returns ElementTag(Number)
// @plugin Depenizen, NoCheatPlus.
// @description
// Returns the number of infractions this player has with NoCheatPlus
// NOTE: Cannot guarantee the accuracy of this tag, due to lack of API in NoCheatPlus.
// -->
if (attribute.startsWith("infractions")) {
ViolationHistory history = ViolationHistory.getHistory(player.getName(), false);
return new ElementTag(history != null ? history.getViolationLevels().length : 0).getAttribute(attribute.fulfill(1));
}
}
return null;
}
@Override
public void adjust(Mechanism mechanism) {
}
}