Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. # If the player has no permission to use the command, this message will appear
  2. no-permission: '&cError: &4You do not have permission for this.'
  3.  
  4. # Message on too many arguments
  5. too-many-arguments: '&cError: &4Too many arguments.'
  6.  
  7. # Message on unknown argument
  8. invalid-argument: '&cError: &4Invalid argument.'
  9.  
  10. # If the item you're trying to repair is on full durability, this message will appear
  11. already-full-durability: '&cError: &4That item is already on full durability.'
  12.  
  13. # If you're holding nothing on your hand, this message will appear
  14. empty-hand: '&cError: &4Please hold an item for repair.'
  15.  
  16. # If you type the repair command while in cooldown, this message will appear - <time> only supports hours, minutes, and seconds for now.
  17. # Will be adding day, week, and month if requested.
  18. still-on-cooldown: '&cError: You must wait <time> to use that command again.'
  19.  
  20. # Message on hand repair - /repair hand
  21. on-repair-hand: '&6Successfully repaired the item in your hand.'
  22.  
  23. # Message on inventory repair - /repair all
  24. on-repair-all: '&6Successfully repaired your inventory.'
  25.  
  26. # cooldown ticks are in seconds.
  27. repair-hand-cooldown: 3600
  28. repair-all-cooldown: 43200
  29.  
  30. # Permission nodes
  31. # ezrepair.repair - Allows player to repair the item in their hand. /repair hand
  32. # ezrepair.repair.all - Allows player to repair everything in their inventory. /repair all [ezrepair.repair permission is required]
  33. # ezrepair.cooldown.bypass - Allows player to bypass the cooldown on repair command.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement