-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
PlayerPointsPlayerExtension.java
65 lines (52 loc) · 1.96 KB
/
PlayerPointsPlayerExtension.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
package com.denizenscript.depenizen.bukkit.extensions.playerpoints;
import com.denizenscript.depenizen.bukkit.extensions.dObjectExtension;
import com.denizenscript.depenizen.bukkit.bridges.PlayerPointsBridge;
import net.aufdemrand.denizen.objects.dPlayer;
import net.aufdemrand.denizencore.objects.Element;
import net.aufdemrand.denizencore.objects.Mechanism;
import net.aufdemrand.denizencore.objects.dObject;
import net.aufdemrand.denizencore.tags.Attribute;
import org.black_ixx.playerpoints.PlayerPoints;
public class PlayerPointsPlayerExtension extends dObjectExtension {
public static boolean describes(dObject object) {
return object instanceof dPlayer;
}
public static PlayerPointsPlayerExtension getFrom(dObject object) {
if (!describes(object)) {
return null;
}
else {
return new PlayerPointsPlayerExtension((dPlayer) object);
}
}
///////////////////
// Instance Fields and Methods
/////////////
public static final String[] handledTags = new String[] {
"playerpoints_points"
};
public static final String[] handledMechs = new String[] {
}; // None
private PlayerPointsPlayerExtension(dPlayer player) {
this.player = player;
}
dPlayer player;
@Override
public String getAttribute(Attribute attribute) {
// <--[tag]
// @attribute <p@player.playerpoints_points>
// @returns Element(Number)
// @description
// Returns the amount of points the player has. Only works on online players.
// @Plugin Depenizen, PlayerPoints
// -->
if (attribute.startsWith("playerpoints_points")) {
return new Element(((PlayerPoints) PlayerPointsBridge.instance.plugin).getAPI()
.look(player.getOfflinePlayer().getUniqueId())).getAttribute(attribute.fulfill(1));
}
return null;
}
@Override
public void adjust(Mechanism mechanism) {
}
}