Denizen Script Commands


Commands are always written with a '-' before them, and are the core component of any script, the primary way to cause things to happen.
Learn about how commands work in The Beginner's Guide.


Showing 1 out of 184 commands...
Nameplayerpoints
Syntaxplayerpoints [set/give/take] [<#>]
Short DescriptionAdjusts the amount of points the player has.
Full DescriptionTake, give or set the amount of points a player has.
This is useful for plugins supporting this kind of economy
which uses the points instead of money as an alternative system.
This works for offline players.
Related Tags<PlayerTag.playerpoints_points> Returns the amount of points the player has. Only works on online players.
Usage Example
# Use to give 5 points to the player.
- playerpoints give 5
Usage Example
# Use to set 10 points to the player.
- playerpoints set 10
GroupDepenizen
RequiresDepenizen, PlayerPoints
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/commands/playerpoints/PlayerPointsCommand.java#L22