Advertisement
Red_Jheyson

Untitled

Oct 11th, 2018
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.31 KB | None | 0 0
  1.  
  2. ##############################################
  3. #                                            #
  4. #                 JH_Economy                 #
  5. #            By: Jheyson Henrique            #
  6. #           Website: www.jhdev.xyz           #
  7. #                                            #
  8. ##############################################
  9.  
  10. # If you have a license for the paid version you get it for her here!
  11. licence: 'XXXXXXXXXXXXXXX'
  12.  
  13. # Prefix of the plugin shown before the messages
  14. prefix: "&2[&fBank&2] &2"
  15.  
  16. # Create a BackUP of all saved accounts in FlatFile
  17. # when the server starts / backups / dd-MM-yyyy @ HH-mm-ss
  18. FlatFile_BackUP: true
  19.  
  20. MySQL:
  21.   # Enable MySQL
  22.   ativar: false
  23.  
  24.   # Keep the database always with updated values
  25.   # May cause lag if left true
  26.   # false = Wrath save the money when the server hangs up
  27.   # true = Wrath save the money when a transaction is made (cause lag)
  28.   MySQL_Sync: false
  29.  
  30.   # Your MySQL host IP
  31.   ip: 'localhost'
  32.  
  33.   # Port of your MySQL
  34.   port: '3306'
  35.  
  36.   # User of your MySQL
  37.   user: 'root'
  38.  
  39.   # Password for your MySQL
  40.   password: 'senha'
  41.  
  42.   # Database that the plugin will use
  43.   database: 'JH_Economy'
  44.  
  45.   # MySQL Driver (I recommend leaving the default)
  46.   driver: 'com.mysql.jdbc.Driver'
  47.  
  48. Magnata:
  49.   # Time between each check of new Magnate
  50.   # time in minutes!
  51.   Verificar: 2
  52.  
  53.   # Tag that the Magnate receives
  54.   # {jh_economy} LengendChat
  55.   tag: "&a[Magnate] "
  56.  
  57.   # Options for when the Magnate changes
  58.   NovoMagnata:
  59.     # Sound when someone becomes a Magnate
  60.     Som:
  61.       usar: true
  62.      
  63.       # http://docs.codelanx.com/Bukkit/1.8/org/bukkit/Sound.html
  64.       Sound: "SUCCESSFUL_HIT"
  65.      
  66.     # Send text to all online players
  67.     Texto:
  68.       usar: true
  69.       Texto:
  70.      - " "
  71.       - "&l{tag} {jogador}&a has just become the new Magnate of the server with &f${money}"
  72.       - " "
  73.      
  74.     # Send a title to online players?
  75.     Title:
  76.       usar: true
  77.       Title: "{jogador}"
  78.       SubTitle: "&aHe's the new Magnate of the server!"
  79.  
  80. MoneyTopInventario:
  81.   # Use money TOP in GUI?
  82.   usar: true
  83.  
  84.   # Name of the head in the listing
  85.   SkullDisplayName: "&f{colocacao}º &e{magnata}{tag} {jogador} "
  86.  
  87.   # Lore's head at Money TOP
  88.   ListLore:
  89.  - " "
  90.   - " &fPlayer: &7{jogador} "
  91.  - " &fPlacing: {colocacao}º "
  92.  - " &fGroup: &7{magnata}{tag} "
  93.  - " &fCoins: &2$&7{money} "
  94.  - " "
  95.  
  96.  # Character limit = 32
  97.  # If this happens the players will be able to catch
  98.  # the inventory items!
  99.  Titulo: "&cMoney top"
  100.  
  101.  
  102. MoneyTopChat:
  103.  
  104.  # Show Money TOP in Chat?
  105.  usar: false
  106.  
  107.  # Number of players to be shown in /money top
  108.  # Only works for Chat
  109.  Tamanho: 10
  110.  
  111.  # Text that is shown before displaying the number of players
  112.  Texto:
  113.  - " "
  114.  - "&cTop 10 jogadores mais ricos do servidor"
  115.  - " "
  116.  
  117.  # Player listing
  118.  Listagem: "&f   {colocacao}&7 {magnata}{tag} {jogador} &7(${money})"
  119.  
  120. # Plugin messages shown to players
  121. Mensagens:
  122.  Money: "&2You have &f{money}."
  123.  JogadorMoney: "&f{jogador} &2have &f{money}."
  124.  Enviou: "&2You sent &a$&f{money} &2to &f{jogador}."
  125.  Recebeu: "&f{jogador} &2send &a$&f{money} &2to you."
  126.  SemFundos: "&cYou have no funds for this!"
  127.  ValorInvalido: "&cThe value must be greater than 0 and only numbers!"
  128.  UseMoneyPay: "&eUse: /money pay <nick> <amount>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement