Advertisement
Guest User

Untitled

a guest
Jan 11th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. #############################
  2. #
  3. # Tokens Configuration
  4. # By: Connor H. (IModZombies4Fun) v1.0
  5. #
  6. #############################
  7.  
  8. # Database configuration.
  9. Database:
  10. Hostname: '127.0.0.1'
  11. Port: 3306
  12. Username: root
  13. Password: password
  14. DatabaseName: tokens
  15.  
  16. # Plugin messages.
  17. Messages:
  18. CannotAfford: '&cYou cannot afford to buy this.'
  19. NotEnoughTokens: '&cYou do not have enough tokens.'
  20. UsageFormat: '&e/tokens <give/set/bal> [player] [tokens]'
  21. NoPermission: '&cYou do not have permission to use this command.'
  22. InvalidNumber: '&c%0% is not a valid number.'
  23. AtLeastOne: '&cYou must specify at least one token.'
  24. NoSuchPlayer: '&cNo such player as %0%.'
  25. CannotGiveToSelf: '&cYou cannot give tokens to yourself.'
  26. GaveTokens: '&aYou gave &e%0% &2%1% &atokens.'
  27. GotTokens: '&eYou were given %1% &atokens.'
  28. SetTokens: "&eYou set &a%0%&e's balance to &2%1% &etokens."
  29. WasSet: '&eYour balance was set to &2%1% &etokens.'
  30. TokenCount: '&eYou have &a%0% &etokens.'
  31.  
  32. # Shop types.
  33. ShopTypes:
  34. Minebomb:
  35. SignFormat:
  36. - '&3(Minebombs)'
  37. - '%item%'
  38. - '%tokens% tokens'
  39. - ''
  40. Backpack:
  41. SignFormat:
  42. - '&b(Backpack)'
  43. - '%item%'
  44. - '&o%tokens% tokens'
  45. - ''
  46. Enchants:
  47. SignFormat:
  48. - '&b(Enchant)'
  49. - '%item%'
  50. - '%quantity%'
  51. - '&o%tokens% tokens'
  52.  
  53. # Shop items.
  54. Items:
  55. Minebomb:
  56. T1:
  57. Item: 'T1'
  58. Tokens: 20
  59. Command: '/minebomb give %player% T1'
  60. T2:
  61. Item: 'T2'
  62. Tokens: 35
  63. Command: '/minebomb give %player% T2'
  64. T3:
  65. Item: 'T3'
  66. Tokens: 50
  67. Command: '/minebomb give %player% T3'
  68. Backpack:
  69. Small:
  70. Item: '9 slots'
  71. Tokens: 25
  72. Command: '/backpack give %player% 9'
  73. Medium:
  74. Item: '18 slots'
  75. Tokens: 50
  76. Command: '/backpack give %player% 18'
  77. Large:
  78. Item: '27 slots'
  79. Tokens: 100
  80. Command: '/backpack give %player% 27'
  81. Massive:
  82. Item: '36 slots'
  83. Tokens: 200
  84. Command: '/backpack give %player% 36'
  85. Humongous:
  86. Item: '45 slots'
  87. Tokens: 300
  88. Command: '/backpack give %player% 45'
  89. Enchants:
  90. Haste:
  91. Item: 'Haste'
  92. Quantity: 1
  93. Tokens: 100
  94. Command: '/give %player% 403 1 EFFICIENCY:1'
  95. Night Vision:
  96. Item: 'Night Vision'
  97. Quantity: 1
  98. Tokens: 100
  99. Command: '/customenchant give %player% NIGHT_VISION 1'
  100. Efficiency:
  101. Item: 'Efficiency'
  102. Quantity: 1
  103. Tokens: 100
  104. Command: '/give %player% 403 1 EFFICIENCY:1'
  105. Fortune:
  106. Item: 'Fortune'
  107. Quantity: 1
  108. Tokens: 100
  109. Command: '/give %player% 403 1 FORTUNE:1'
  110. Jump:
  111. Item: 'Jump'
  112. Quantity: 1
  113. Tokens: 100
  114. Command: ['/customenchant give %player% JUMP 1', '/message %player% This is another command!']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement