Advertisement
Guest User

Untitled

a guest
Aug 17th, 2014
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. # Here you can change the output of all messages sent to your players via chat.
  2. # To do so you just have to rewrite the values below. Just be sure to not put any %-variables in the message that were not there to begin with,
  3. # it will just be displayed as %whateveryouwrote in the message sent.
  4. #
  5. # %value stands for an amount of money
  6. # %player means either the player executing the command, the player you interact with or the player whose account you want to manipulate
  7. # %balance stands for the amount of money a player has
  8. #
  9. # sender stands for the message the one executing the command gets, target for the other person who is affected.
  10. # Errors and other messages are only displayed for the one executing the command
  11.  
  12.  
  13. playeronly: "§2[§aBank§2] §aThis command can only be run by a player."
  14. noperm: "§2[§aBank§2] §6You do not have permission to transfer money."
  15. balance: "&2[&aBank&2] §&You have %balance"
  16. invalidaccount: "§2[§aBank§2] §6Invalid account: §2%player"
  17. reload: "§2[§aBank§2] §aReloaded configuration!"
  18.  
  19. pay:
  20. success:
  21. tax: "§2[§aBank§2] §a A Transaction tax of §2%value§a was deducted from your account: "
  22. sender: "§2[§aBank§2] §aSent§2 %value to§2 %player§a."
  23. target: "§2[§aBank§2] §aReceived§2 %value from§2 %player§a."
  24. insufficientFunds: "§2[§aBank§2] §6You need more Emeralds,§a You have: §2%balance.§a You need:§2 %value"
  25. insufficientSpace:
  26. sender: "§2[§aBank§2]§2 %player §ahas insufficient storage space for§2 %value"
  27. target: "§2[§aBank§2]§2 %player §atried to send§2 %value,§a but you don't have enough space for that amount."
  28. error: "§2[§aBank§2] §aYour attempt to send§2 %value §ato§2 %player failed for unknown reasons."
  29.  
  30. deposit:
  31. success: "§2[§aBank§2] §aDeposited %value to your storage."
  32. error: "§2[§aBank§2] §aUnable to deposit %value to your storage."
  33.  
  34. withdraw:
  35. success: "§2[§aBank§2] §aWithdrew§2 %value §afrom your storage."
  36. error: "§2[§aBank§2] §aUnable to withdraw§2 %value from your storage."
  37.  
  38. moneyadmin:
  39. b: "§2[§aBank§2] %player §aHas§2 %balance"
  40. add:
  41. sender: "§2[§aBank§2] §aAdded§2 %value§a to§2 %player §aaccount."
  42. target: "§2[§aBank§2] Admin added§2 %value §ato your account."
  43. error: "§2[§aBank§2] §aCould not add§2 %value §ato account§2 %player"
  44. rm:
  45. sender: "§2[§aBank§2] §aRemoved§2 %value §afrom§2 %player§a account."
  46. target: "§2[§aBank§2] §aadmin removed§2 %value from your account."
  47. error: "§2[§aBank§2] §aCould not remove§2 %value §afrom account§2 %player"
  48.  
  49. vault:
  50. created: "§2[§aBank§2] §aCreated vault successfully."
  51. error: "§2[§aBank§2] §6Failed to create vault."
  52. noVaultPerm: "§2[§aBank§2] §6You do not have permission to create vaults here."
  53.  
  54. plugins:
  55. towny:
  56. noTownVaultPerm: "§2[§aBank§2] §aYou do not have permission to create town vaults here."
  57. noTownResident: "§2[§aBank§2] §aCannot create town vault: You are not resident of a town."
  58. noNationVaultPerm: "§2[§aBank§2] §aYou do not have permission to create nation vaults here."
  59. notInNation: "§2[§aBank§2] §aCannot create nation vault: You do not belong to a nation."
  60. vault:
  61. insufficientFunds: "§2[§aBank§2] §aInsufficient funds."
  62. insufficientSpace: "§2[§aBank§2] §aInsufficient space."
  63. unknownError: "§2[§aBank§2] §aUnknown failure."
  64. notImplemented: "§2[§aBank§2] §aGringotts does not support banks"
  65. faction:
  66. noFactionVaultPerm: "§2[§aBank§2] §aYou do not have permission to create a faction vault here."
  67. notInFaction: "§2[§aBank§2] §aCannot create faction vault: You are not in a faction."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement