Advertisement
Guest User

plugin.yml

a guest
Nov 13th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.02 KB | None | 0 0
  1. author: TimJäger
  2.  
  3. name: waypoints
  4. description: A plugin that adds the ability to work with waypoints
  5. prefix: _waypoints_
  6.  
  7. version: 0.1.0
  8.  
  9. main: me.TimJ.Demo.mainWaypoints
  10.  
  11. permissions:
  12.   waypoints.*:
  13.     description: used to give all permissions involved in this plugin
  14.     default: op
  15.     children:
  16.       waypoints.create: true
  17.       waypoints.warp: true
  18.       waypoints.craft.*: true
  19.    
  20.   waypoints.create:
  21.     description: used to allow a player to create a waypoint
  22.     default: op
  23.    
  24.   waypoints.warp:
  25.     description: used to allow a player to warp to the waypoint
  26.     default: op
  27.    
  28.   waypoints.craft.*:
  29.     description: allows the player to craft the Nether Dust item
  30.     children:
  31.       waypoints.craft.nether: true
  32.       waypoints.craft.end: true
  33.     default: op
  34.  
  35.   waypoints.craft.nether:
  36.     description: allows the player to craft the Nether Dust item
  37.     default: op
  38.    
  39.   waypoints.craft.end:
  40.     description: allows the player to craft the End Dust item
  41.     default: op
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement