Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. #=====================================================================================\
  2. # ||
  3. # AConomy Made by Abcik ||
  4. # Version 2.3 ||
  5. # A very simple plugin on the economy with the support of the vault, ||
  6. # MYSQL and local playerdata. Attention! To AConomy works you need a vault plugin. ||
  7. # ||
  8. #=====================================================================================/
  9.  
  10. #aconomy.balance - For /money
  11. #aconomy.balance.other - For /money check [player]
  12. #aconomy.help - For /money help
  13. #aconomy.top - For /money top
  14. #aconomy.pay - For /money pay [player] [amount]
  15. #aconomy.admin - For /money (give|take|set|reload)
  16.  
  17. #Players initial balance
  18. StartingBalance: 500.0
  19.  
  20. #Format of money.
  21. #Available Formats:
  22. # 1 - "1"
  23. # 2 - "1.5"
  24. # 3 - "1.45"
  25. MoneyFormat: 3
  26.  
  27. #Top update time
  28. #In minutes
  29. TopUpdate: 720
  30.  
  31. #Top size
  32. #min=1; max=20;
  33. #The number of people that will be visible in the top.
  34. TopSize: 1
  35.  
  36. #If false date will use nickname.
  37. #If true data will use UUID.
  38. #It is recommended to set the same as the server.
  39. OnlineMode: true
  40.  
  41. #MYSQL settings
  42. #To change Mysql settings you must restart server completely.
  43. Mysql:
  44. Enabled: false
  45. Host: 'localhost'
  46. Port: '3306'
  47. Username: 'root'
  48. Password: 'Password'
  49. Database: 'Database'
  50.  
  51. #Messages settings
  52. Messages:
  53.  
  54. OnlyForPlayers: '&c» &7Nur für Spieler!'
  55. NotEnoughForTop: '&c» &7Nicht genügend Spieler!'
  56. TopNull: '&c» &7Lädt... Bitte warten...'
  57. NoAccount: '&c» &7Der Spieler hat kein Account!'
  58. NotEnoughMoney: '&c» &7Du hast nicht genug Geld!'
  59. NoPermissions: '&c» &7Befehl nicht gefunden oder keinen Zugriff.'
  60.  
  61. HelpPlayer:
  62. - '&c» &6Hilfe für das Geldsystem (User)'
  63. - '&e/money &7Zeigt dein derzeitiges Geld an'
  64. - '&e/money help &7Zeigt diese Nachricht an'
  65. - '&e/money top &7Zeigt die Spieler mit dem meistem Geld an'
  66. - '&e/money pay [Name] [Anzahl] &7Gibt einem anderem Spieler Geld'
  67.  
  68. HelpAdmin:
  69. - '&c» &6Hilfe für das Geldsystem (Admin)'
  70. - '&e/money &7Zeigt dein derzeitiges Geld an'
  71. - '&e/money help &7Zeigt dein derzeitiges Geld an'
  72. - '&e/money top &7Zeigt diese Nachricht an'
  73. - '&e/money check [Name] &7Zeigt das Geld eines anderen Spielers an'
  74. - '&e/money pay [Name] [Anzahl] &7Gibt einem anderem Spieler Geld'
  75. - '&e/money give [Name] [Anzahl] &7Cheatet einem Spieler Geld her'
  76. - '&e/money take [Name] [Anzahl] &7Entzieht einem Spieler Geld'
  77. - '&e/money set [Name] [Anzahl] &7Ersetzt das Geld eines Spielers'
  78. - '&4/money reload &cLädt die Config neu'
  79.  
  80. TopStructure: '&f%place%. &e%player% &f- &e%balance%'
  81.  
  82. YourBalance: '&c» &7Du hast &e$%balance%&7'
  83. OtherBalance: '&c» &7%other% hat &e$%balance%'
  84.  
  85. PayUsage: '&c» &7Nutze: &e/money pay [Name]'
  86. PayToMyself: '&c» &7Du kannst dir nicht selber Geld zahlen!'
  87. PaySend: '&c» &7Du hast &e%receiving% &e$%summ% &7gezahlt.'
  88. PayReceive: '&c» &e%sender% hat dir &e$%summ% gegeben.'
  89.  
  90. ReloadedSuccessfully: '&d&lAConomy &fReloaded successful!'
  91.  
  92. CheckUsage: '&c» &7Nutze: &e/money check [Name]'
  93.  
  94. GiveUsage: '&c» &7Nutze: &e/money give [Name] [Anzahl]'
  95. GiveSuccessfully: '&c» &7Das Geld wurde gegeben!'
  96.  
  97. TakeUsage: '&c» &7Nutze: &e/money take [Name] [Anzahl]'
  98. TakeSuccessfully: '&c» &7Geld genommen, Ehre genommen!'
  99. TakeNotEnoughMoney: '&c» &7Der Spieler hat nicht genug Geld!'
  100.  
  101. SetUsage: '&d&lAConomy &fUse: /money set [player] [amount]'
  102. SetSuccessfully: '&d&lAConomy &fMoney set!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement