Escad

DailyRewards default configuration

Aug 18th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.83 KB | None | 0 0
  1. # This shouldn't need editing and may be blank on first startup
  2. online:
  3.   m:
  4. gui-name: '&6Daily Rewards'
  5.  
  6. # Placeholders:
  7. # %amt% - Amount of tokens given/received by command
  8. # %player% - The name of the player receiving the tokens
  9. no-such-player: '&cThe specified player is not online!'
  10. invalid-amount: '&cThe specified amount of reward tokens is not a valid number!'
  11. tokens-received-msg: '&6You have received &e%amt% &6reward tokens!'
  12. tokens-given-msg: '&e%player% &6has been given &e%amt% &6reward tokens!'
  13.  
  14. # Placeholders:
  15. # %player% - The target player's name
  16. # %clicked-days% - Amount of days checked in
  17. # %next-cumulative% - Amount of day check-ins needed for next cumulative reward
  18. # %days-claimed% - Visual display of progress until next cumulative reward
  19. already-claimed: '&cThis reward has already been claimed!'
  20. claimed-reward: '&aYou have claimed your daily reward!'
  21. unable-to-claim: '&cYou cannot afford to check-in!'
  22. not-available: '&cThis reward is not available yet!'
  23. permission-message: '&cYou do not have permission to use this!'
  24.  
  25. info-book:
  26.   name: '&c&lTIPS &e>>'
  27.   lore:
  28.  - '&eWelcome, %player%!'
  29.   - '&7Already clicked: %clicked-days%'
  30.   - '%days-claimed%'
  31.  
  32. # Placeholders:
  33. # %day% - The day of this check-in
  34. claim-now:
  35.   name: '&a&lCLAIM NOW &eDay %day%'
  36.   lore:
  37.  - '&72x Iron Ingot'
  38.   - '&71x Diamond'
  39. claimable:
  40.   name: '&6&lCLAIMABLE &eDay %day%'
  41.   lore:
  42.  - '&72x Iron Ingot'
  43.   - '&71x Diamond'
  44.   - '&4&lCost: &c1x Reward Token'
  45. claimed:
  46.   name: '&8&lCLAIMED &eDay %day%'
  47.   lore:
  48.  - '&72x Iron Ingot'
  49.   - '&71x Diamond'
  50. unavailable:
  51.   name: '&4&lUNAVAILABLE &eDay %day%'
  52.   lore:
  53.  - '&72x Iron Ingot'
  54.   - '&71x Diamond'
  55.  
  56. # This item is removed from the player's inventory when
  57. # they claim a yellow CLAIMABLE reward pane. No placeholders
  58. custom-item:
  59.   material-type: 'double_plant'
  60.   name: '&d&lReward Token'
  61.   lore:
  62.  - '&5Use this token to claim a missed daily reward!'
  63.   data: 0
  64.   amount: 1
  65.  
  66. # These commands are executed when a player claims a reward
  67. # Placeholders - %player%
  68. daily-rewards:
  69. - 'give %player% iron_ingot 2'
  70. - 'give %player% diamond 1'
  71.  
  72. # Placeholders:
  73. # %player% - Player viewing the check-in menu
  74. # %days-claimed% - Progress until receiving the cumulative reward it is under
  75. cumulative-rewards:
  76.   7:
  77.     additional-lore:
  78.     - '&6Special: &e3x Iron Block'
  79.     - '%days-claimed%'
  80.     commands:
  81.    - 'give %player% iron_block 3'
  82.   14:
  83.     additional-lore:
  84.     - '&6Special: &e3x Gold Block'
  85.     - '%days-claimed%'
  86.     commands:
  87.    - 'give %player% gold_block 3'
  88.   21:
  89.     additional-lore:
  90.     - '&6Special: &e3x Diamond Block'
  91.     - '%days-claimed%'
  92.     commands:
  93.    - 'give %player% diamond_block 3'
  94.   28:
  95.     additional-lore:
  96.     - '&6Special: &e3x Emerald Block'
  97.     - '%days-claimed%'
  98.     commands:
  99.    - 'give %player% emerald_block 3'
Advertisement
Add Comment
Please, Sign In to add comment