coreprotect out of 3928 meta-documentation entries...| Name | coreprotect_log_interaction |
| Object | LocationTag |
| Input | ElementTag |
| Description | Adds a CoreProtect log entry for this block location of somebody interacting with a block.
Input is just the name of who interacted (not a PlayerTag). |
| Requires | Depenizen, CoreProtect |
| Source | https://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/properties/coreprotect/CoreProtectLocationProperties.java#L140 |
| Name | coreprotect_log_placement |
| Object | LocationTag |
| Input | MapTag |
| Description | Adds a CoreProtect log entry for this block location of somebody placing a block.
Input map must have 'user' (a name, not a PlayerTag) and 'material' (a block MaterialTag) For example: - adjust <context.location> coreprotect_log_placement:[user=<player.name>;material=stone] |
| Requires | Depenizen, CoreProtect |
| Source | https://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/properties/coreprotect/CoreProtectLocationProperties.java#L90 |
| Name | coreprotect_log_removal |
| Object | LocationTag |
| Input | MapTag |
| Description | Adds a CoreProtect log entry for this block location of somebody removing a block.
Input map must have 'user' (a name, not a PlayerTag) and 'material' (a block MaterialTag) For example: - adjust <context.location> coreprotect_log_removal:[user=<player.name>;material=stone] |
| Requires | Depenizen, CoreProtect |
| Source | https://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/properties/coreprotect/CoreProtectLocationProperties.java#L115 |
| Name | <LocationTag.coreprotect_logs[<duration>]> |
| Returns | ListTag(MapTag) |
| Description | Returns a list changes to the given block within the given duration.
Each Map has keys: "action" ("removal", "placement", or "interaction"), "is_rolled_back" (true/false), "material" (MaterialTag), "player_name" (player username, not a PlayerTag instance), "time" (TimeTag) |
| Generated Example | |
| Requires | Depenizen, CoreProtect |
| Source | https://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/properties/coreprotect/CoreProtectLocationProperties.java#L50 |