Advertisement
Guest User

Untitled

a guest
Sep 12th, 2018
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. items{
  2. "minecraft:diamond" {
  3. currency = emc
  4. amount = 8092
  5. }
  6. "minecraft:diamond_block" {
  7. currency = emc
  8. amount = 72828
  9. }
  10. "minecraft:gold_block" {
  11. currency = emc
  12. amount = 18432
  13. }
  14. "minecraft:lapis_block" {
  15. currency = emc
  16. amount = 7776
  17. }
  18. "minecraft:iron_block" {
  19. currency = emc
  20. amount = 2304
  21. }
  22. "minecraft:gold_ingot" {
  23. currency = emc
  24. amount = 2048
  25. }
  26. "minecraft:golden_apple" {
  27. currency = emc
  28. amount = 1944
  29. }
  30. "minecraft:glowstone" {
  31. currency = emc
  32. amount = 1536
  33. }
  34. "minecraft:glowstone_dust" {
  35. currency = emc
  36. amount = 384
  37. }
  38. "minecraft:iron_ingot" {
  39. currency = emc
  40. amount = 256
  41. }
  42. "minecraft:gold_nugget" {
  43. currency = emc
  44. amount = 227
  45. }
  46. "minecraft:redstone" {
  47. currency = emc
  48. amount = 64
  49. }
  50. "minecraft:redstone_block" {
  51. currency = emc
  52. amount = 576
  53. }
  54. "minecraft:slime_ball" {
  55. currency = emc
  56. amount = 24
  57. }
  58. "minecraft:cobblestone" {
  59. currency = emc
  60. amount = 1
  61. }
  62. "minecraft:coal_block" {
  63. currency = emc
  64. amount = 1152
  65. }
  66. "minecraft:stone" {
  67. currency = emc
  68. amount = 1
  69. }
  70. }
  71. currencies {
  72. emc {
  73. decimal-places = 0
  74. name = {text = EMC}
  75. plural = {text = EMC}
  76. symbol = {text = EMC, color = gold}
  77. format = {text = "%{amount}% %{symbol}%"}
  78. exchangeable = true
  79. }
  80. }
  81. default-currency = emc
  82. server-accounts {
  83. enable = true
  84. autosave-interval = 20
  85. accounts = [
  86. {
  87. id = "bank"
  88. name = "Bank"
  89. currencies {
  90. values = []
  91. type = blacklist
  92. }
  93. negative-values {
  94. values = []
  95. type = whitelist
  96. }
  97. }
  98. ]
  99. dynamic-accounts {
  100. enable = false
  101. currencies {
  102. values = []
  103. type = blacklist
  104. }
  105. negative-values {
  106. values = []
  107. type = whitelist
  108. }
  109. }
  110. }
  111.  
  112. version = 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement