Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. items {
  2. "modcurrency:coin@0" {
  3. currency = PokeDollar
  4. amount = .01
  5. }
  6. "modcurrency:coin@1" {
  7. currency = PokeDollar
  8. amount = .05
  9. }
  10. "modcurrency:coin@2" {
  11. currency = PokeDollar
  12. amount = .10
  13. }
  14. "modcurrency:coin@3" {
  15. currency = PokeDollar
  16. amount = .25
  17. }
  18. "modcurrency:coin@4" {
  19. currency = PokeDollar
  20. amount = 1
  21. }
  22. "modcurrency:coin@5" {
  23. currency = PokeDollar
  24. amount = 2
  25. }
  26. "modcurrency:banknote@1" {
  27. currency = PokeDollar
  28. amount = 5
  29. }
  30. "modcurrency:banknote@2" {
  31. currency = PokeDollar
  32. amount = 10
  33. }
  34. "modcurrency:banknote@3" {
  35. currency = PokeDollar
  36. amount = 20
  37. }
  38. "modcurrency:banknote@4" {
  39. currency = PokeDollar
  40. amount = 50
  41. }
  42. "modcurrency:banknote@5" {
  43. currency = PokeDollar
  44. amount = 100
  45. }
  46. }
  47.  
  48. currencies {
  49. PokeDollar {
  50. decimal-places = 2
  51. name = {text = PokeDollar}
  52. plural = {text = PokeDollars}
  53. symbol = {text = P, color = gold}
  54. format = {text = "%{amount}% %{symbol}%"}
  55. exchangeable = true
  56. }
  57. }
  58.  
  59. default-currency = PokeDollar
  60.  
  61. server-accounts {
  62. enable = true
  63. autosave-interval = 20
  64. accounts = [
  65. {
  66. id = "bank"
  67. name = "Bank"
  68. currencies {
  69. values = []
  70. type = blacklist
  71. }
  72. negative-values {
  73. values = []
  74. type = whitelist
  75. }
  76. }
  77. ]
  78. dynamic-accounts {
  79. enable = false
  80. currencies {
  81. values = []
  82. type = blacklist
  83. }
  84. negative-values {
  85. values = []
  86. type = whitelist
  87. }
  88. }
  89. }
  90.  
  91. version = 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement